我试图让基本示例适用于 PHPMailer。
我所做的只是上传整个 PHPMailer_5.2.2 文件夹,根据您看到的代码配置下面的页面,我不断收到 Mailer Error: Message body empty
,但我可以清楚地看到 contents.html 文件中有 html 并且不是’空。这是我从 PHPMailer PHPMailer_5.2.2/examples/test_smtp_gmail_basic.php 使用的示例文件
我尝试使用我在 Outlook for Gmail 中的设置,我知道我的用户名和密码,SMTP 端口是 587 并且设置为 TLS,我尝试在下面的代码中用 TLS 替换 SSL,我仍然遇到同样的错误。
我还尝试了以下代码,有人建议:
改变了这个:
$mail->MsgHTML($body);
对此
$mail->body = $body;
我仍然有同样的错误,还有什么我需要配置的吗?这是我第一次使用 PHPMailer,我可以使用标准的 php 邮件,但我想试试这个,因为我要发送电子邮件的页面有很多 html,我不想浏览所有 html并输入字符转义,所以有人推荐使用这个。
<?php
//error_reporting(E_ALL);
error_reporting(E_STRICT);
date_default_timezone_set('America/Toronto');
require_once('../class.phpmailer.php');
//include("class.smtp.php"); // optional, gets called from within class.phpmailer.php if not already loaded
$mail = new PHPMailer();
$body = file_get_contents('contents.html');
$body = preg_replace('/[\]/','',$body);
$mail->IsSMTP(); // telling the class to use SMTP
$mail->Host = "smtp.gmail.com"; // SMTP server
$mail->SMTPDebug = 1; // enables SMTP debug information (for testing)
// 1 = errors and messages
// 2 = messages only
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "ssl"; // sets the prefix to the servier
$mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server
$mail->Port = 587; // set the SMTP port for the GMAIL server
$mail->Username = "xxx@gmail.com"; // GMAIL username
$mail->Password = "xxx"; // GMAIL password
$mail->SetFrom('xxx@gmail.com', 'First Last');
$mail->AddReplyTo("xxx","First Last");
$mail->Subject = "PHPMailer Test Subject via smtp (Gmail), basic";
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->MsgHTML($body);
$address = "xxx.net";
$mail->AddAddress($address, "John Doe");
//$mail->AddAttachment("images/phpmailer.gif"); // attachment
//$mail->AddAttachment("images/phpmailer_mini.gif"); // attachment
if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
?>
原文由 user1547410 发布,翻译遵循 CC BY-SA 4.0 许可协议
我有同样的问题,我只是改变解决了:
这个:
进入这个:
body
变成Body
多么小的错误!