通过Hostgator中的Office365用PHP(phpmailer)发送邮件

前端之家收集整理的这篇文章主要介绍了通过Hostgator中的Office365用PHP(phpmailer)发送邮件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我希望能够通过office365在 Hostgator发送邮件.我能用gmail做到这一点,但无法将其设置为使用office365.

它适用于我的其他两台服务器,我很好.唯一的问题是Hostgator.
他们必须采取一些行动吗?

<?PHP
require_once('class.PHPmailer.PHP');
$mail = new PHPMailer(true);



$mail->IsSMTP();

$mail->SMTPDebug = 2;
$mail->SMTPAuth = true;
$mail->SMTPSecure = "tls";
$mail->Host = "pod51014.outlook.com";
$mail->Port = 587;
$mail->Username = "usernamehere";
$mail->Password = "************";

/* ... addaddres,reply,subject,message -> the usual stuff you need ... */

$mail->Send();

?>

我只是不断得到以下回应:

SMTP -> ERROR: Failed to connect to server: Connection refused (111)

我在与他们的支持聊天,587端口应该打开.

我认为hostgator阻止外发电子邮件但接受传入的电子邮件.
原文链接:https://www.f2er.com/php/134020.html

猜你在找的PHP相关文章