这里首先描述我的环境,因为它有点特别: 我使用Windows 8.1 PC和运行Vagrant的虚拟机。它基本上是Debian 64bits机器。 这个VM实际上是我的服务器。
然后,我将Symfony 2用于我的项目,并且我正在尝试使用SwiftMailer和gmail(使用我自己的gmail地址),以便通过联系表单(用户的电子邮件地址,用户名称)发送电子邮件和邮件内容。)
我的操作使用表单中提供的内容填充电子邮件数据并发送邮件。 顺便说一下,它使用 - > isValid()方法检查数据是否有效。
我提交表单后出现问题,我收到SwiftMailer的异常:无法与主机smtp.gmail.com建立连接[#0]
这是我的config_dev.yml:
swiftmailer:
transport: gmail
username: "%gmail_user%"
password: "%gmail_password%"
delivery_address: "%gmail_user%"
encryption: ssl
host: smtp.gmail.com
port: 465
auth_mode: login
“%gmail_user%”和stuff在parameters.yml文件中定义。这是内容:
parameters:
mailer_transport: gmail
mailer_user: null
mailer_password: null
gmail_user: my_gmail_address@gmail.com
gmail_password: my_gmail_passwd
经过整个互联网的大量搜索后,我从这里或其他地方尝试了很多东西,没有任何工作:使用tls,尝试端口587,尝试使用smtp.gmail.com服务器的IP给出我同样的错误。
SSL扩展似乎也已启用:
php --info | grep openssl
OpenSSL support => enabled
和其他一些告诉OpenSSL版本的东西。
我检查了我的IMAP设置以及启用或禁用应用程序访问我的Gmail的常规设置,它已启用。
我也试过telnet smtp.google.com 465
,自从我联系到它以来它工作得很好。
我只是不知道现在该做什么。我希望你们中的一些人有同样的问题,可以帮助我。
度过美好的一天!
编辑:问题已解决且出现了新问题
经过进一步调查,我随机尝试改变config_dev.yml文件:
transport: mail
这解决了SwiftMailerException的问题,尽管邮件没有到达delivery_address电子邮件地址,即使我将其更改为我拥有的另一个地址(一个hotmail)。 我会继续努力,但我希望我的解决方案可以提供帮助。
编辑#2:尝试解决发送问题,但没有任何效果。
这将是一本书.. 我尝试在config.yml中添加一个假脱机系统:
spool: {type: memory }
自从分析器告诉我他发送邮件后,邮件似乎已被发送。 我将此添加到我的控制器以发送所有可能被假脱机的邮件:
$spool = $transport->getSpool();
$sent = $spool->flushQueue($this->container->get('swiftmailer.transport.real'));
我还添加了这个以检查它是否真的发送过:
if ($this->mailer->send($message)) {
echo '[SWIFTMAILER] sent email to ' . $toEmail;
} else {
echo '[SWIFTMAILER] not sending email: ' . $mailLogger->dump();
}
我真的迷路了,不知道该怎么做..
以下是在控制器中发送邮件的代码:
$message = \Swift_Message::newInstance()
->setSubject("The subject from the form")
->setFrom("The address from the form")
->setTo("The address which comes from an entity")
->setBody("The body from the form made with a twig template");
$mailer = $this->container->get('mailer');
$mailLogger = new \Swift_Plugins_Loggers_ArrayLogger();
$mailer->registerPlugin(new \Swift_Plugins_LoggerPlugin($mailLogger));
if ($mailer->send($message)) {
echo 'sent email';
} else {
echo 'not sending email: ' . $mailLogger->dump();
}
这总是告诉我'发送电子邮件',但我从未收到过。
答案 0 :(得分:1)
您是否尝试与cURL建立连接?我有类似的弹性搜索(elastica),显然它使用了我不知道的cURL HTTP代理,因为它是在php.ini中配置的。
偏离主题:如果mailcatcher符合您的需求,您也可以尝试。
答案 1 :(得分:1)
我遇到了同样的错误(Connection could not be established with host smtp.gmail.com [ #0]
),原因是防病毒(Avast!)。当我禁用它时,错误消失了。
答案 2 :(得分:1)
我找到了解决方案但从未在这里回答,但由于这个问题有2000多种观点,我觉得这很重要。
所以,一切都很好,我唯一不知道的是在开发期间(也就是在dev
环境中),swiftmailer似乎禁用了交付,如下所述:
http://symfony.com/doc/current/email/dev_environment.html#disabling-sending
我所要做的就是在config_dev.yml
和config_test.yml
个文件中设置:
swiftmailer:
disable_delivery: false
请注意邮件的地址。例如,在这个项目中,它会向我们的客户发送虚假邮件,这本来就很成问题。
为了防止这种情况,您可以执行symfony文档(http://symfony.com/doc/2.8/email/dev_environment.html#sending-to-a-specified-address-es)中的说明
# app/config/config_dev.yml
swiftmailer:
delivery_addresses: ['dev@example.com']