我正在尝试使用 phpMailer 通过电子邮件向用户发送确认消息。我的代码是这样的:
$SMTP_USERNAME = SMTP_USERNAME;
$SMTP_PASSWORD = SMTP_PASSWORD;
$SMTP_HOST = SMTP_HOST;
$SMTP_STATUS = SMTP_STATUS;
if($SMTP_STATUS==1)
{
include($_SERVER['DOCUMENT_ROOT']."/modules/SMTP/smtp.php"); //mail send thru smtp
}
else
{
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Additional headers
$headers .= 'From: '.$from.'' . "\r\n";
$headers .= 'Bcc: '.$to.'' . "\r\n";
mail($from,$subject,$message,$headers);
}
但每次我加载它时,它都会显示这个
错误消息:“ SMTP 错误:无法验证。
请帮我解决这些问题。
谢谢你们的时间,希望有人能尽快回复我!