以下代码段不起作用。
我查看了我的php.ini
文件,但看起来不错。
它没有返回任何错误。
我听说过使用名为sendmail
的内容。
我正在使用Mac。
我做错了什么?
<form action="" method="post">
<button class="btn" type="submit" name="submit" value="submit">CLICK</button>
</form>
<?php
if(isset($_POST['submit'])) {
error_reporting();
$to = 'philipnagel511@gmail.com';
$subject = 'subject';
$message = 'text';
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=windows-1251' . "\r\n";
$headers .= 'To: user <philipnagel511@gmail.com>' . "\r\n";
$headers .= 'From: server <nipdeliveries@gmail.com>' . "\r\n";
mail($to, $subject, $message, $headers);
}
?>