0

有谁知道将 PHPMailer 与 AOL 一起使用的正确设置。下面的代码适用于 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。

这是在带有 Apache/2.4.27 (Win64) 和 PHP 版本 7.0.9 的 MS Windows 10 桌面上运行的。

4

2 回答 2

0

尝试从您的发件人地址的显示名称部分中删除“AOL”一词。由于大多数客户端仅在列出邮件时显示显示名称,AOL 不喜欢看起来可能来自官方 AOL 地址的名称。

于 2019-02-02T15:25:32.910 回答
0

本文有要使用的官方 SMTP 服务器(无用地隐藏在“POP3 和 IMAP”部分下),并且您似乎使用了正确的详细信息。

这可能是垃圾邮件过滤过滤问题;尝试设置$mail->XMailer = ' ';(这些引号中有一个空格)来禁止识别 PHPMailer。

这个错误在 AOL 方面似乎是非常主观的 - 如果您搜索该错误消息,则会有无数的搜索结果,您可以看到其他人在这里这里分享他们的挫败感

否则,我建议联系AOL 邮政主管支持

于 2018-04-22T22:51:07.060 回答