用的华东2 ECS centos6.8 32位
phpmailer发送邮件 返回错误
[font="]2017-11-24 02:44:42
[font="]SMTP ERROR: Failed to connect to server: Connection timed out (110)
[font="]2017-11-24 02:44:42
[font="]SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting Message could not be sent.
Mailer Error: SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
百度了很多都无法解决,有说是无法连接到smtp服务器的问题。我远程主机操作 ping smtp.qq.com 是正常的。防火墙也配置了允许25端口。
也有说sendmail的问题。服务器也有安装sendmail 。phpmailer上配置的sendmail路径也没有问题。
求大神们的帮助
-------------------------
-------------------------
$mail->SMTPDebug = 2; // Enable verbose debug output
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtp1.example.com;smtp2.example.com'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'user@example.com'; // SMTP username
$mail->Password = 'secret'; // SMTP password
$mail->SMTPSecure = 'tls'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587; // TCP port to connect to
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。