4

在 symfony2.3 中,我使用的是 swiftmailer。

我有一个像 myname@abc.com 这样的 Google Apps 地址和我的普通 gmail 地址 myname@gmail.com

使用时:

mailer_transport:  smtp
mailer_encryption: ssl
auth_mode:         login
mailer_host:       smtp.gmail.com
mailer_user:       myname
mailer_password:   pymass

配置效果很好,它从我的 gmail 地址发送电子邮件,但使用 myname@abc.com 作为 mailer_user 并使用正确的密码不起作用。

有任何想法吗?

4

2 回答 2

7

从(我假设是)Google Apps 帐户发送的配置与 Gmail 帐户不同。您的 swiftmailer 参数应如下所示:

mailer_transport:  smtp
mailer_host:       smtp.gmail.com
mailer_user:       myname@abc.com
mailer_password:   pymass
auth_mode:         login
port:              587
encryption:        tls

确保包括您的整个电子邮件地址以及端口和加密协议。

几个月前,我从这篇文章中得出了解决方案。

另外,一个小提示:它encryption不是mailer_encyption您可以在此处阅读有关 Symfony 的 swiftmailer 参数的更多信息。

于 2013-07-31T13:03:17.993 回答
0

当您在控制器或任何地方创建消息时,它就在您放置发件人的地方(setFrom 方法)

// Create a message
$message = Swift_Message::newInstance('Wonderful Subject')
  ->setFrom(array('john@doe.com' => 'John Doe'))
  ->setTo(array('receiver@domain.org', 'other@domain.org' => 'A name'))
  ->setBody('Here is the message itself')
;

在您的配置文件中,mailer_user 仅用于连接到 gmail 的 smtp 服务器。

于 2013-07-31T12:34:53.083 回答