SwiftMailer + Gmail - 无法发送电子邮件 [英] SwiftMailer + Gmail - Cannot send email

查看:136
本文介绍了SwiftMailer + Gmail - 无法发送电子邮件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



$ b

 <$> 

c $ c> $ transport = Swift_SmtpTransport :: newInstance()
- > setHost('smtp.gmail.com')
- > setPort(465)
- > setEncryption( 'ssl')
- > setUsername('email@gmail.com')
- > setPassword('mypasss');

$ mailer = Swift_Mailer :: newInstance($ transport);

$ message = Swift_Message :: newInstance('Contato via Site')
- > setFrom(array($ email => $ de))
- > setTo (array($ destinatario =>'AgênciaLinka'))
- > setBody($ corpo_mensagem,'text / html')
- > setCharset('UTF-8');

$ mailer-> send($ message);

然后我得到这个:

致命错误:未收集的异常'Swift_TransportException'带有消息'无法与主机smtp.gmail.com [#0]建立连接... 

首先使用您的帐户登录并在新标签中打开此项,

  https://www.google.com/settings/u/ 1 / security / lesssecureapps 
https://accounts.google.com/b/0/DisplayUnlockCaptcha
https://security.google.com/settings/security/activity?hl=zh-CN&pli= 1

您需要确保您使用的电子邮件ID已启用安全性较低的应用程序。


I can't connect with Gmail SMTP server.

Look:

$transport = Swift_SmtpTransport::newInstance()
            ->setHost('smtp.gmail.com')
            ->setPort(465)
            ->setEncryption('ssl')
            ->setUsername('email@gmail.com')
            ->setPassword('mypasss');

    $mailer = Swift_Mailer::newInstance($transport);

    $message = Swift_Message::newInstance('Contato via Site')
            ->setFrom(array($email => $de))
            ->setTo(array($destinatario => 'Agência Linka'))
            ->setBody($corpo_mensagem, 'text/html')
            ->setCharset('UTF-8');

    $mailer->send($message);

And then I get this:

Fatal error: Uncaught exception 'Swift_TransportException' with message 'Connection could not be established with host smtp.gmail.com [ #0]' in ...

Anyone has experienced this?

解决方案

First login with your account and open this in new tab,

https://www.google.com/settings/u/1/security/lesssecureapps
https://accounts.google.com/b/0/DisplayUnlockCaptcha
https://security.google.com/settings/security/activity?hl=en&pli=1

you need to make sure your using email id has enable for less secure apps.

这篇关于SwiftMailer + Gmail - 无法发送电子邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆