0

我在我的 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 的设置?

4

2 回答 2

1

如果您在本地主机上使用您的代码段,请放在服务器上然后尝试。php mail() 函数需要在服务器上才能工作。在本地主机上,您总是失败!

于 2012-04-25T20:39:08.077 回答
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 真的很棒!

于 2012-04-25T18:22:49.060 回答