Swiftmailer不会发送电子邮件,但SMTP客户端会发送

时间:2011-06-04 20:57:28

标签: php email symfony1 swiftmailer

我正在尝试使用swift_smtptransport发送一封电子邮件,该电子邮件将连接到127.0.0.1:25我正在使用以下代码:

$message = Swift_Message::newInstance();

$message->setSubject('Test mail');
$message->setFrom('admin@localhost');
$message->setTo('peter@localhost');
$message->setBody('Test message');

$num = $this->getMailer()->send($message, $failures);

print_r($failures);

echo $num; 

结果是:array()0没有任何事情发生,没有异常,没有任何内容。

我正在使用水银电子邮件服务器,日志只说:

Connection from 127.0.0.1, Sat Jun 04 23:46:56 2011
EHLO [127.0.0.1]
QUIT
0 sec. elapsed, connection closed Sat Jun 04 23:46:56 2011

但在我尝试使用thunderbird发送电子邮件后,日志显示:

Connection from 127.0.0.1, Sat Jun 04 23:39:20 2011
EHLO [127.0.0.1]
MAIL FROM:<peter@localhost> SIZE=381
RCPT TO:<peter@localhost>
DATA
DATA - 11 lines, 381 bytes.
QUIT
0 sec. elapsed, connection closed Sat Jun 04 23:39:20 2011

1 个答案:

答案 0 :(得分:1)

检查开发环境的配置,switfmailer delivery_strategy选项设置为none,在factories.yml中。