我有这个代码,一切都在我的本地服务器上运行良好.电子邮件发送没有任何问题.
但现在我将内容传递给网络服务器,我收到了这个错误……
SMTP Error: Could not connect to SMTP host.
SSL在服务器中启用..正确吗?那么,问题是什么?
$mail = new PHPMailer();
$mail->IsSMTP();
$mail->SMTPAuth = true; // enable SMTP authentication
$mail->SMTPSecure = "ssl"; // sets the prefix to the servier
$mail->Host = "smtp.gmail.com"; // sets GMAIL as the SMTP server
$mail->Port = 465; // set the SMTP port
$mail->Username = "dnteiro"; // GMAIL username
$mail->Password = "xxx"; // GMAIL password
解决方法:
听起来你的网络主机正在阻止与smtp.gmail.com:465的出站连接.建议:
>验证:如果您具有对您的Web托管服务器的shell /终端访问权限,请尝试使用telnet测试来验证它们实际上阻止了这一点.运行telnet smtp.gmail.com 465
>联系人:致电或通过电子邮件发送您的托管服务提供商,了解他们为出站转发提供的SMTP服务器.确保他们知道您要将@ gmail.com地址用作发件人/回复地址.
>更新代码:主机为您提供不同的邮件服务器后,请更新代码并重试.
如果您的Web主机根本不允许从其服务器进行出站中继,那么您需要查看交换主机(如果这是您的应用程序的要求).