我希望能够通过office365在Hostgator中发送邮件。我可以使用Gmail做到这一点,但无法将其设置为可与Office365一起使用。

它可以在我的其他2台服务器上使用。唯一的问题是Hostgator。

我是否必须修复某些问题,或者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阻止传出电子邮件,但接受传入电子邮件。

关于php - 无法通过Hostgator中的Office365使用PHP(phpmailer)发送邮件。如何解决这个问题?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10472010/

10-15 03:48