我正在尝试使用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!";
}
?>
答案 0 :(得分:11)
我遇到了同样的问题,我解决了改变:
此:
$mail->body = 'Hello, this is my message.';
进入这个:
$mail->Body = 'Hello, this is my message.';
body
进入Body
有点错误!
答案 1 :(得分:0)
首先我必须启用ssl扩展名(我从本网站的其他帖子获得)。为此,请打开php.ini并通过更改
启用php_openssl.dll;extension=php_openssl.dll
到
extension=php_openssl.dll
现在,启用tls并使用端口587.然后注释掉preg_replace
。
最后,我能够将它显示在我的Gmail“已发送”文件中,虽然我希望在我的“收件箱”中看到它。
这个网站太棒了!感谢。
答案 2 :(得分:0)
PHPMailer-&gt; MsgHTML()尝试通过修复非绝对URL来做一些聪明的事情,但对我来说它也只是返回空。
$mail->IsHTML(true);
$mail->Body=$body;