10

我正在尝试使用 PHPMailer 通过 SMTP 发送电子邮件,但到目前为止还没有运气。我已经经历了许多 SO 问题、PHPMailer 教程和论坛帖子,但仍然无法使其正常工作。为了节省时间,我将尽可能多地记录我的失败尝试,但首先这里是我正在使用的代码:

<?php
    session_start();
    error_reporting(E_ALL);
    ini_set('display_errors','On');

    require('includes/class.phpmailer.php');
    include('includes/class.smtp.php');
    $mail = new PHPMailer(); 

    $name = $_POST["name"];
    $guests = $_POST["guests"];
    $time = $_POST["time"];

    $message = "<h1>".$name." has booked a table for ".$guests." at ".$time."</h1>";

    $mail->IsSMTP(); // telling the class to use SMTP
    $mail->Host       = "ssl://smtp.gmail.com"; // SMTP server
    $mail->SMTPDebug  = 1;                     // enables SMTP debug information (for testing)
    $mail->SMTPAuth   = true;                  // enable SMTP authentication
    $mail->Port       = 26;                    // set the SMTP port for the GMAIL server
    $mail->Username   = "myEmail@gmail.com"; // SMTP account username
    $mail->Password   = "myPassword";        // SMTP account password
    $mail->SetFrom('myEmail@gmail.com', 'James Cushing');
    $mail->AddReplyTo("myEmail@gmail.com","James Cushing");
    $mail->Subject    = "PHPMailer Test Subject via smtp, basic with authentication";
    $mail->AltBody    = "To view the message, please use an HTML compatible email viewer!";
    $mail->MsgHTML($message)
    $address = "myOtherEmail@me.com";
    $mail->AddAddress($address, "James Cushing");

    if(!$mail->Send()) {
        echo "Mailer Error: " . $mail->ErrorInfo;
    } else {
        echo "Message sent!";
    }
?>

首先,当我现在运行这段代码时,我得到了两个不同的错误。在我的本地服务器上,我收到错误:
SMTP -> 错误:无法连接到服务器:操作超时(60)
以下发件人地址失败:myEmail@gmail.com:在未连接的情况下调用 Mail()
邮件程序错误:以下发件人地址失败:myEmail@gmail.com:调用 Mail() 未连接

我在我的网络服务器上运行相同的代码时遇到同样的错误,但第一行是:
SMTP -> 错误:无法连接到服务器:网络无法访问(101)

显然,值得指出的是,我没有使用文字“myEmail@gmail.com”,但我已经用我自己的电子邮件代替了这篇文章。

我尝试过的事情
- 使用 iCloud SMTP 服务器
- 使用不同的端口
- 在我的 php.ini 文件中启用 OpenSSL 扩展
- 从各种 PHPMailer 示例中复制代码
- 使用 Google 的“DisplayUnlockCaptcha”系统来启用连接
- 发送到不同的端口和从不同的端口发送地址 - 从用户名属性中删除“@gmail.com” - 我不记得的其他一些事情

这已经让我发疯了大约一天,所以如果有人能解决它,他们将成为英雄。

谢谢

4

5 回答 5

38
$mail->IsSMTP();
$mail->Host = "smtp.gmail.com";
$mail->SMTPAuth = true;
$mail->SMTPSecure = "ssl";
$mail->Username = "myemail@gmail.com";
$mail->Password = "**********";
$mail->Port = "465";

这是一个工作配置。

尝试替换你所拥有的

于 2013-08-30T14:33:08.413 回答
3

不要在端口 465 上使用 SSL,它自 1998 年以来已被弃用,仅用于未获得备忘录的 Microsoft 产品;在端口 587 上使用 TLS:因此,下面的代码应该非常适合您。

mail->IsSMTP(); // telling the class to use SMTP
$mail->Host       = "smtp.gmail.com"; // SMTP server

$mail->SMTPAuth   = true;                  // enable SMTP authentication
$mail->SMTPSecure = "tls";                 // sets the prefix to the servier
$mail->Host       = "smtp.gmail.com";      // sets GMAIL as the SMTP server
$mail->Port       = 587;                   // set the SMTP port for the 
于 2015-08-14T16:52:24.880 回答
2

首先,将这些设置用于 Google:

$mail->IsSMTP();
$mail->Host = "smtp.gmail.com";
$mail->SMTPAuth = true;
$mail->SMTPSecure = "tls"; //edited from tsl
$mail->Username = "myEmail";
$mail->Password = "myPassword";
$mail->Port = "587";

而且,你设置了什么防火墙?

如果您要过滤掉 TCP 端口 465/995,可能还有 587,您需要配置一些例外或将它们从您的规则列表中删除。

https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting

于 2013-08-30T14:51:29.587 回答
1

每当我的客户端机器更改网络连接(例如,家庭网络与办公室网络)并且以某种方式重新启动网络服务(或重新启动机器)为我解决了这个问题时,我都会遇到类似的 SMTP 故障。不确定这是否适用于您的情况,但以防万一。

sudo /etc/init.d/networking restart   # for ubuntu
于 2015-04-18T03:56:04.687 回答
0

首先,谷歌创建了“使用不太安全的账户方法”功能:

https://myaccount.google.com/security

然后创建另一个权限:

https://accounts.google.com/b/0/DisplayUnlockCaptcha

希望能帮助到你。

于 2017-07-11T20:36:03.327 回答