SMTP 连接失败:解决“SMTP Connect() 失败”错误
尝试使用 Gmail 发送电子邮件时,您可能会遇到错误消息指出“SMTP -> 错误:无法连接到服务器:连接超时 (110)\nSMTP Connect() 失败。消息未发送。\n邮件程序错误:SMTP Connect() 失败。”此错误表明与 SMTP 服务器建立连接时出现问题。
要解决此问题,您需要修改负责发送电子邮件的 PHP 代码。具体来说,删除或注释掉以下行:
$mail->IsSMTP();
IsSMTP() 方法已弃用,不应使用。通过删除或注释掉此行,代码将自动使用 SMTP 发送电子邮件,消除连接问题并允许成功发送电子邮件。
以下是经过修改的更新后的代码:
require 'class.phpmailer.php'; // path to the PHPMailer class
require 'class.smtp.php';
$mail = new PHPMailer();
$mail->Mailer = "smtp";
$mail->Host = "ssl://smtp.gmail.com";
$mail->Port = 587;
$mail->SMTPAuth = true; // turn on SMTP authentication
$mail->Username = "[email protected]"; // SMTP username
$mail->Password = "mypasswword"; // SMTP password
$Mail->Priority = 1;
$mail->AddAddress("[email protected]","Name");
$mail->SetFrom($visitor_email, $name);
$mail->AddReplyTo($visitor_email,$name);
$mail->Subject = "Message from Contact form";
$mail->Body = $user_message;
$mail->WordWrap = 50;
if(!$mail->Send()) {
echo 'Message was not sent.';
echo 'Mailer error: ' . $mail->ErrorInfo;
} else {
echo 'Message has been sent.';
}
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3