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

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

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

  1. <?PHP
  2. require_once('class.PHPmailer.PHP');
  3. $mail = new PHPMailer(true);
  4.  
  5.  
  6.  
  7. $mail->IsSMTP();
  8.  
  9. $mail->SMTPDebug = 2;
  10. $mail->SMTPAuth = true;
  11. $mail->SMTPSecure = "tls";
  12. $mail->Host = "pod51014.outlook.com";
  13. $mail->Port = 587;
  14. $mail->Username = "usernamehere";
  15. $mail->Password = "************";
  16.  
  17. /* ... addaddres,reply,subject,message -> the usual stuff you need ... */
  18.  
  19. $mail->Send();
  20.  
  21. ?>

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

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

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

我认为hostgator阻止外发电子邮件但接受传入的电子邮件.

猜你在找的PHP相关文章