几个月来,我一直在使用 PHPmailer ( https://github.com/Synchro/PHPMailer ) 通过亚马逊 SES 发送电子邮件。在过去两周的某个时候,它已经停止工作,我还没有碰过它。我收到一条错误消息:
SMTP Error: Could not connect to SMTP host.
这是我的代码。
public function sendEmail($to,$subject,$body){
$mail = new PHPMailer;
$mail->IsSMTP(); // Set mailer to use SMTP
$mail->Host = 'amazonaws....'; // Specify main and backup server
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'mySMTPuname'; // SMTP username
$mail->Password = 'smtpPword'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable encryption, 'ssl' also accepted
$mail->From = 'example';
$mail->FromName = 'me';
$mail->AddAddress($to); // Name is optional
$mail->IsHTML(true); // Set email format to HTML
$mail->Subject = $subject;
$mail->Body = $body;
return $mail->Send();
}
我的亚马逊账户仍然是最新的并且是活跃的。有没有办法打印出更详细的错误消息以进行调试?最近有什么已知的问题吗?