Yii2:在godaddy托管中无法与主机smtp.gmail.com [连接拒绝#111]建立连接

时间:2017-11-01 19:10:29

标签: php email yii2 smtp swiftmailer

我正在尝试在Yii2中使用Swift Mailer。

我的主人是Godaddy,我正在尝试使用Gmail帐户发送电子邮件。

代码似乎工作正常,但当我尝试使用它时,我收到错误: 无法与主机smtp.gmail.com建立连接[连接拒绝#111]

我仔细检查了我是否使用了正确的gmail凭据。这可能是我的主机的问题,如果有的话,有没有办法解决它? 这是代码

'mailer' => [
            'class' => 'yii\swiftmailer\Mailer',
            'transport' => [
                    'class' => 'Swift_SmtpTransport',
                    'host'=>'smtp.gmail.com',
                    'username'=>'myUserName@gmail.com',
                    'password'=>'******',
                    'port'=>'587',
                    'encryption'=>'tls',
                ],
            'useFileTransport' => false, //for the testing purpose, you need to enable this


        ],
I also tried with **`'class' => 'Swift_MailTransport',`**
but the error was not resolved.

The error is 
  

无法与主机smtp.gmail.com建立连接   [连接拒绝#111]

请在这方面帮助我。 谢谢,

2 个答案:

答案 0 :(得分:0)

您的配置中的某些内容似乎有误,请尝试将配置更改为:

   'port'=>'465',
   'encryption'=>'ssl'

答案 1 :(得分:0)

您的Swift Mailer配置设置似乎无法连接主机Gmail,请尝试以下更改,很可能会起作用:

'mailer' => [
    'class' => 'yii\swiftmailer\Mailer',
    'useFileTransport' => false,
    'transport' => [
        'class' => 'Swift_SmtpTransport',
        'host'=>'smtp.gmail.com',
        'username'=>'myUserName@gmail.com',
        'password'=>'******',
        'port'=>'465',
        'encryption'=>'ssl',
    ],
],

所做的更改:

'port'=>'465',
'encryption'=>'ssl',