无法通过 Hostgator 中的 Office365 使用 PHP (phpmailer) 发送邮件。如何解决这个问题?

Posted

技术标签:

【中文标题】无法通过 Hostgator 中的 Office365 使用 PHP (phpmailer) 发送邮件。如何解决这个问题?【英文标题】:Unable to send mail with PHP (phpmailer) via Office365 in Hostgator. How to fix this? 【发布时间】:2012-05-15 08:47:39 【问题描述】:

我希望能够通过 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 端口。

【问题讨论】:

我认为你真的需要再次向他们寻求支持。 【参考方案1】:

我认为 hostgator 正在阻止传出的电子邮件,但接受传入的电子邮件。

【讨论】:

【参考方案2】:

如果您的托管服务提供商不允许出站 SMTP 邮件,我建议您查看 Microsoft Graph - 一个 REST API,它还可以让您发送电子邮件并做更多事情。例如,您可以使用 oauth2-azure 库从您的 PHP 代码中轻松地与之交互。

【讨论】:

【参考方案3】:

试试这些东西。也许有些东西会起作用。

将主机设置为:

$mail->Host = 'smtp.office365.com'; 

根本不设置端口:

//$mail->Port = 587;

【讨论】:

以上是关于无法通过 Hostgator 中的 Office365 使用 PHP (phpmailer) 发送邮件。如何解决这个问题?的主要内容,如果未能解决你的问题,请参考以下文章

图像未出现在 hostgator (cPanel) 中但出现在 localhost

HostGator主机怎么样?HostGator优惠码是多少?

createuserwizard/asp 登录控件问题 hostgator

如何将我的域名从 hostgator 指向 heroku

HostGator 上的 Linux 服务器显示未找到“HTTPRequest”类

如何将 wordpress 从 root 移动到 hostgator 上的新目录?