我知道以前有人问过这个问题,并且我已经阅读了那里的所有帖子,但我仍然找不到解决方案。
我有一台安装了 wamp 的 Windows 机器。当我尝试通过谷歌的 SMTP 服务器发送一封简单的电子邮件时,一切正常。但是,当我将相同的脚本复制到 Ubuntu 12 机器时,它给了我这个错误:
PHP Fatal error: Uncaught exception 'Swift_TransportException' with message 'Failed to authenticate on SMTP server with username "xxx@gmail.com" using 2 possible authenticators' in /home/TestMail/SwiftMail/lib/classes/Swift/Transport/Esmtp/AuthHandler.php:171
Stack trace:
/home/TestMail/SwiftMail/lib/classes/Swift/Transport/EsmtpTransport.php(289): Swift_Transport_Esmtp_AuthHandler->afterEhlo(Object(Swift_SmtpTransport))
/home/TestMail/SwiftMail/lib/classes/Swift/Transport/AbstractSmtpTransport.php(114): Swift_Transport_EsmtpTransport->_doHeloCommand()
/home/TestMail/SwiftMail/lib/classes/Swift/Mailer.php(76): Swift_Transport_AbstractSmtpTransport->start()
/home/TestMail/testmail.php(73): Swift_Mailer->send(Object(Swift_Message))
thrown in /home/TestMail/SwiftMail/lib/classes/Swift/Transport/Esmtp/AuthHandler.php on line 171
这就是我初始化传输的方式:
$transport = Swift_SmtpTransport::newInstance('smtp.gmail.com', 465, 'ssl')
我尝试smtp.gmail.com
在端口 465 上 telnet,它工作正常,所以它一定不是防火墙问题。
我使用 PHP 启用了 SSL。我尝试使用不同的邮件服务器发送带有和不带有 SSL 的两封单独的邮件,一切都像魅力一样。只有谷歌的邮件让我生气。
任何想法都会在这里受到欢迎。
我的整个php代码:
<?php
require_once 'SwiftMail/lib/swift_required.php';
// Create the Transport
$transport = Swift_SmtpTransport::newInstance('smtp.gmail.com', 465, 'ssl')
->setUsername('xxx@gmail.com')
->setPassword('xxx');
// Create the Mailer using your created Transport
$mailer = Swift_Mailer::newInstance($transport);
$htmlbody = 'some html here';
// Create a message
$message = Swift_Message::newInstance('without head')
->setFrom(array('<from email>' => '<some sender>'))
->setTo(array('<to email>' => '<some recepient>'))
->setBody($htmlbody, 'text/html');
// Send the message
$result = $mailer->send($message);
var_dump($result);
?>
谢谢!