我希望能够通过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端口应该打开.