有人知道在AOL中使用PHPMailer的正确设置吗?下面的代码适用于outlook.com,但aol.com一直拒绝它。代码如下:
<?php
// Import PHPMailer classes into the global namespace
// These must be at the top of your script, not inside a function
use PHPMailer\PHPMailer\PHPMailer;
use PHPMailer\PHPMailer\Exception;
//Load Composer's autoloader
require 'vendor/autoload.php';
$mail = new PHPMailer(true); // Passing `true` enables exceptions
try {
//Server settings
$mail->SMTPDebug = 2; // Enable verbose debug output
$mail->isSMTP(); // Set mailer to use SMTP
$mail->Host = 'smtp.aol.com'; // Specify main and backup SMTP servers
$mail->SMTPAuth = true; // Enable SMTP authentication
$mail->Username = 'xxxxxxxxxxxxxxxxxxx@aol.com'; // SMTP username
$mail->Password = 'yyyyyyyyyyyyyyyyyyyyyy'; // SMTP password
$mail->SMTPSecure = 'ssl'; // Enable TLS encryption, `ssl` also accepted
$mail->Port = 465; // TCP port to connect to
//Recipients
$mail->setFrom('xxxxxxxxxxxxxxxxxxx@aol.com', 'Barry AOL');
$mail->addAddress('xxxxxxxxxxxxxxxxxxx@gmail.com', 'Barry gmail'); // Add a recipient
//Content
$mail->isHTML(true); // Set email format to HTML
$mail->Subject = 'Here is the subject - sent from AOL.com ';
$mail->Body = 'This is the HTML message body <b>in bold!</b> - sent from AOL.com ';
$mail->AltBody = 'This is the body in plain text for non-HTML mail clients - sent from AOL.com ';
$mail->send();
echo 'Message has been sent from AOL.com ';
} catch (Exception $e) {
echo 'Message could not be sent. Mailer Error: ', $mail->ErrorInfo;
}我从PHPMailer和aol.com得到以下错误消息;
2018-04-22 21:44:56 SERVER -> CLIENT: 521 5.2.1 : AOL will not accept delivery of this message.
2018-04-22 21:44:56 SMTP ERROR: DATA END command failed: 521 5.2.1 : AOL will not accept delivery of this message.
SMTP Error: data not accepted.
Message could not be sent. Mailer Error: SMTP Error: data not accepted.SMTP server error: DATA END command failed Detail: : AOL will not accept delivery of this message. SMTP code: 521 Additional SMTP info: 5.2.12018-04-22 21:44:56 CLIENT -> SERVER: QUIT
2018-04-22 21:44:56 SERVER -> CLIENT:
2018-04-22 21:44:56 SMTP ERROR: QUIT command failed:我想我一定是把服务器、端口和SMTPSecure设置弄错了,但是我不知道它们应该是什么。顺便说一句,只要对服务器、端口和SMTPSecure进行适当的更改,代码就可以在outlook.com上运行。
这是运行在MS Windows10桌面上的Apache/2.4.27 (Win64)和PHP7.0.9版本。
发布于 2018-04-23 06:51:07
This article有要使用的官方SMTP服务器(无用地隐藏在"POP3 & IMAP“部分下),而您似乎使用了正确的详细信息。
这可能是一个垃圾邮件过滤问题;尝试设置$mail->XMailer = ' '; (引号中有一个空格)来抑制PHPMailer的识别。
对于美国在线来说,这个错误似乎是非常主观的--如果你搜索这个错误消息,会有无数的搜索结果,你可以看到其他人分享了他们在here和here上的沮丧
否则,我建议您联系AOL postmaster support。
发布于 2019-02-02 23:25:33
请尝试从发件人地址的显示名称部分中删除“AOL”一词。由于大多数客户端在列出邮件时只显示display-name,因此AOL不喜欢看起来可能来自AOL官方地址的名称。
https://stackoverflow.com/questions/49971245
复制相似问题