1

我正在尝试使用phpmailer.

include_once('/home/site/PHPMailer/class.phpmailer.php');

$mail             = new PHPMailer();
$body             = $mail->getFile('contents.html');
$body             = eregi_replace("[\]",'',$body);
$mail->IsSMTP();  // telling the class to use SMTP
$mail->Host     = "smtp.free.fr"; // SMTP server
$mail->IsSendmail(); // telling the class to use SendMail transport

$mail->From       = "name@sub.fr";
$mail->FromName   = "name";

$mail->Subject    = "subject";

$mail->AltBody    = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test

$mail->MsgHTML($body);

$mail->AddAddress("sub@sub.net", "name");

$mail->AddAttachment("mylist.csv");             // attachment

if(!$mail->Send()) {
  echo "Mailer Error: " . $mail->ErrorInfo;
} else {
  echo "Message sent!";
}

我收到“消息已发送!” 执行时,但从未收到任何电子邮件。

4

1 回答 1

0

由于许多邮件提供商(例如 AOL 和雅虎)阻止了大量与垃圾邮件相关的 IP 地址,因此您发送电子邮件的用户很可能没有收到它。因此,如果您运行此 php 脚本的服务器在其黑名单上,则用户甚至不会将其接收到垃圾邮件文件夹。

检查您的 php 电子邮件日志。

http://help.yahoo.com/l/us/yahoo/smallbusiness/webhosting/php/php-03.html

此外,如果不是这种情况,请尝试确保您尝试包含的文件存在,并且您将正确的路径传递给该文件。就像@Waygood 所说,尝试查看它是否在没有附件的情况下发送。

于 2012-08-16T14:01:26.917 回答