且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

phpmailer 无法连接到 SMTP 服务器

更新时间:2023-01-22 10:36:48

我怀疑是因为你没有设置端口,SMTPSecure 应该是小写的.改变这个:

I suspect it's because you've not set the port, and SMTPSecure should be lower case. Change this:

$mail->SMTPSecure = 'tls';
$mail->Port = 587;

除此之外,请检查您的 ISP/防火墙是否允许您发送出站邮件,以及您的 DNS 是否正常工作.

Beyond that, check that you're allowed to send outbound mail by your ISP/firewall and that your DNS is working.