0

PHPMailer に問題があります。自分の Web サイト 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

SMTPAuthに設定false:

$mail->SMTPAuth = false;

理由:サーバーに電子メール アカウントが構成されていません。

サーバーの IP アドレスはホワイトリストに登録されており、任意のメール アドレスからメールを送信できます@thuis*******.nl

于 2016-11-23T12:08:09.020 に答える