我已经在我的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!'; }
?>
它只是继续返回false。知道我做错了什么吗? 我需要检查php / apache的一些设置吗?
答案 0 :(得分:1)
如果您在localhost上使用您的代码段,请放在服务器上然后尝试。 如果你希望它工作,php mail()函数需要在服务器上。在localhost你总是失败!
答案 1 :(得分:0)
试试这个:
<?php
$Name = "Da Duder"; //senders name
$email = "email@adress.com"; //senders e-mail adress
$recipient = "PersonWhoGetsIt@emailadress.com"; //recipient
$mail_body = "The text for the mail..."; //mail body
$subject = "Subject for reviever"; //subject
$header = "From: ". $Name . " <" . $email . ">\r\n"; //optional headerfields
ini_set('sendmail_from', 'me@domain.com');
mail($recipient, $subject, $mail_body, $header);
?>
http://be.php.net/manual/en/function.mail.php
每行文字不得超过70个字符,需要用LF(\ n)
切断 编辑:正如@brad建议的那样:SwiftMailer真的很棒!