0

我的 PHPMailer 有问题,我想连接到使用我的网站 IP 配置的 Office 365 服务器,这里有一个连接器,因此我可以连接到 Office 365 SMTP 服务器,无需身份验证即可连接,因为我的 IP 地址已列入白名单。

问题是我无法对服务器进行身份验证。

PHPMailer 输出:

2016-11-23 09:06:50 CLIENT -> SERVER: EHLO www.thuis*******.nl 2016-11-23 09:06:50  SMTP Error: Could not authenticate. 2016-11-23 09:06:50 CLIENT -> SERVER: QUIT 2016-11-23 09:06:50  SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting Mailer Error: SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting

PHP 文件:

$mail = new PHPMailer();
$mail->IsSMTP();
$mail->SMTPDebug = 1;
$mail->SMTPAuth = true;
$mail->SMTPSecure = '';
$mail->SMTPAutoTLS = false;
$mail->Host = "thuis*******-nl.mail.protection.outlook.com";
$mail->Port = 25;
$mail->SetFrom('john@thuis*******.nl', 'John');
$mail->AddReplyTo("noreply@thuis*******.nl");
$mail->Subject = "This is the subject";
$mail->MsgHTML('Message body');
$address = "john@doe.nl";
$mail->AddAddress($address);
if(!$mail->Send()) {
   echo "Mailer Error: " . $mail->ErrorInfo;
 } else {
   echo "Message sent!";
}
4

1 回答 1

1

设置SMTPAuthfalse

$mail->SMTPAuth = false;

原因:我的服务器没有配置任何电子邮件帐户。

服务器 IP 地址被列入白名单,可以从任何带有@thuis*******.nl.

于 2016-11-23T12:08:09.020 回答