Mandrill SMTP - API 110:连接超时ERROR与PHPMailer
ERROR
SMTP - >错误:无法连接到服务器:连接超时(110) SMTP错误:无法连接到SMTP主机。 SMTP - >错误:无法连接到服务器:连接超时(110) SMTP错误:无法连接到SMTP主机。
示例代码
<?php
$mail = new PHPMailer();
$mail->IsSMTP(); // telling the class to use SMTP
$mail->SMTPDebug = 1; // enables SMTP debug information (for testing)
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "ssl"; // sets the prefix to the servier
$mail->Host = "smtp.mandrillapp.com"; // sets GMAIL as the SMTP server
$mail->Port = 465; // set the SMTP port for the GMAIL server
$mail->Username = “yourusername”; // GMAIL username
$mail->Password = “passowrd”; // GMAIL password
?>
答案 0 :(得分:0)
我们是在同一个基础上。因此,首先要检查您的配置:
您使用的是安全线吗?如果没有,你可以删除这个。
您应该检查您使用的端口是否真的是要使用的端口。 More information about Mandrill ports here
如果以上仍然无法解决问题,请检查并联系您的网络托管服务提供商,如果他们允许出站SMTP连接,尤其是Mandrill,因为某些提供商仅在专用服务器上执行此操作。更多信息请访问:http://help.mandrill.com/entries/24633717-Why-am-I-getting-a-Relay-Access-Denied-error-trying-to-send-through-SMTP-