我希望能够通过 office365在Hostgator中发送邮件。我可以用 Gmail 做到这一点,但无法将其设置为与 office365 一起使用。
它适用于我的另外两台服务器。唯一的问题是 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 端口。