PHPMailer can’t connect to Gmail
所以我一直在网上搜索这个问题,几乎每个例子都被谴责为与防火墙或服务器相关的问题。据我所知,我的服务器可以很好地连接到 gmail,但 PHPMailer 仍然无法连接。这是我的 PHP:
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
require_once($_SERVER[‘DOCUMENT_ROOT’]."/phpmailer/class.phpmailer.php"); $host ="smtp.gmail.com"; $port ="587"; $checkconn = fsockopen($host, $port, $errno, $errstr, 5); if(!$checkconn){ echo"($errno) $errstr"; } else { echo ‘Connected through fsocketopen.<br />’; } $mail = new PHPMailer(); $mail->IsSMTP(); |
凭据未显示,但 100% 正确。结果如下:
Connected through fsocketopen.
Mailer Error: SMTP Connect()
failed.
如您所见,服务器允许通过 fsocketopen 连接到 gmail,但 PHPMailer 不会连接。我什至通过 SSH 访问了我的服务器,并收到以下响应:
-bash-4.1$ telnet smtp.gmail.com 587
Trying 2607:f8b0:400d:c02::6d…
Connected to smtp.gmail.com.
Escape character is ‘^]’.
220 mx.google.com ESMTP g1sm52568728qec.9 – gsmtp
所以两个测试验证我的服务器和 Gmail 之间的连接是可用的。所以现在我只能假设我的 PHPMailer 有问题。我已经扫描了 class.phpmailer.php 文件,但我对它的了解还不够,无法确定哪里会出现问题。任何帮助表示赞赏!
我认为这是问题所在:
1
|
$mail->SMTPSecure ="ssl";
|
您尝试使用 SSL,但在您的 telnet 示例中,您没有使用。您应该将端口 465 用于安全 SMTP,或禁用
(注意 SMTPAuth 和 SMTPSecure 是不同的概念。SMTPAuth 确保您是您所说的那样。SMTPSecure 加密通信通道。)
更新,此代码经过测试并且有效。我也尝试了非 SSL 版本,但 Google 似乎不再允许明文 SMTP。
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
$mail = new PHPMailer();
$mail->IsSMTP(); $mail->AddAddress("receiver@example.com"); $mail->Subject ="test"; |
如果没有,您可能启用了一些防火墙。
所以看起来好像我在服务器上安装的 PHPMailer 脚本无法处理第三方中继 – 至少不是这个。我已经尝试上传最新版本的 class.phpmailer.php,但在这种情况下,我从 SourceForge 下载了整个包并将所有文件重新上传到服务器。这成功了。吸取教训!
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/268518.html