我有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!";
}
答案 0 :(得分:0)
将SMTPAuth
设为false
:
$mail->SMTPAuth = false;
原因:我的服务器没有配置任何电子邮件帐户。
服务器IP地址列入白名单,可以使用@thuis*******.nl
从任何邮件地址发送邮件。