我在我的 Mac 上运行了 Mamp 并试图让 mail() 工作。
这就是我必须解决的问题。
$to = 'mymail@gmail.com';
$subject = 'The subject!';
$message = 'Hi there!';
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= "X-Mailer: PHP/".phpversion();
$headers .= 'From: Test <test@test.com>' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Mail it
if(mail($to, $subject, $message, $headers))
{ print 'success!'; }
else
{ print 'fail!'; }
?>
它只是不断返回错误。知道我做错了什么吗?我需要检查一些 php/apache 的设置?