我正在服务器上的一个PHP页面上安装电子邮件发送功能。我希望能够指定要发送的Gmail帐户,因此我使用的是PHPMailer。但是,每次加载发送电子邮件的页面时,我都会在大约30秒后收到504网关超时错误。最终,电子邮件被发送(我在大约5分钟后收到),但这是正常的吗?这是一个非常基本的文本电子邮件。
这是我发送电子邮件的代码
require '../html/lib/phpmailer/PHPMailerAutoload.php';
//Create a new PHPMailer instance
$mail = new PHPMailer;
//Tell PHPMailer to use SMTP
$mail->isSMTP();
//Enable SMTP debugging
// 0 = off (for production use)
// 1 = client messages
// 2 = client and server messages
$mail->SMTPDebug = 2;
//Ask for HTML-friendly debug output
$mail->Debugoutput = 'html';
//Set the hostname of the mail server
$mail->Host = 'smtp.gmail.com';
//Set the SMTP port number - 587 for authenticated TLS, a.k.a. RFC4409 SMTP submission
$mail->Port = 587;
//Set the encryption system to use - ssl (deprecated) or tls
$mail->SMTPSecure = 'tls';
//Whether to use SMTP authentication
$mail->SMTPAuth = true;
//Username to use for SMTP authentication - use full email address for gmail
$mail->Username = "user@gmail.com";
//Password to use for SMTP authentication
$mail->Password = "pw";
//Set who the message is to be sent from
$mail->setFrom('from@gmail.com', 'First Last');
//Set an alternative reply-to address
//$mail->addReplyTo('@example.com', 'First Last');
//Set who the message is to be sent to
$mail->addAddress('recip@gmail.com', 'recip');
$mail->Subject = 'PHPMailer GMail SMTP test 2';
//Read an HTML message body from an external file, convert referenced images to embedded,
//convert HTML into a basic plain-text alternative body
//$mail->msgHTML(file_get_contents('contents.html'), dirname(__FILE__));
//Replace the plain text body with one created manually
$mail->Body = 'This is another plain-text message body';
//Attach an image file
//$mail->addAttachment('images/phpmailer_mini.png');
//send the message, check for errors
if (!$mail->send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}
答案 0 :(得分:1)
SMTP超时很长(至少5分钟)。你得到的504是因为nginx和你的PHP cgi之间的超时(我假设你正在运行FPM)更短,所以当PHP生成错误时,nginx已经放弃了连接,所以你是得不到反馈。
这很可能是您主机上的DNS或防火墙问题 - 请查看the troubleshooting docs。
答案 1 :(得分:1)
Digital Ocean在其支持中心指出如何启用像smtp这样的服务来优先考虑IPv4上的连接,同时仍然为您的Droplet维护可访问的IPv6功能。
您可以优先考虑IPv6上的IPv4地址,以便您可以 继续发送电子邮件而不禁用IPv6。你会那样做的 通过编辑Droplet的/etc/gai.conf文件并删除注释 (#)来自以下一行:
默认配置:#precedence :: ffff:0:0/96 100
具有IPv4优先级的配置:优先级:: ffff:0:0/96 100
我已经检查并确认我正在处理PHPMailer问题,其中请求将超时(504网关超时)但邮件最终仍在交付(Ubuntu 16.04 LEMP)。
这是因为Ngninx放弃了与PHP-FPM的连接,而php-script仍然在后台运行,试图解析IPv6 SMTP地址,最后转移到IPv4没有成功。