天天看点

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

我希望能够通过office365在

Hostgator发送邮件.我能用gmail做到这一点,但无法将其设置为使用office365.

它适用于我的其他两台服务器,我很好.唯一的问题是Hostgator.

他们必须采取一些行动吗?

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 = "************";

$mail->Send();

?>

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

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

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