【问题标题】:Yii2 : Connection could not be established with host smtp.gmail.com [Connection refused #111] in a godaddy hostingYii2 : 在 Godaddy 主机中无法与主机 smtp.gmail.com [连接被拒绝 #111] 建立连接
【发布时间】:2018-04-14 04:39:21
【问题描述】:

我正在尝试在 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]

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

【问题讨论】:

  • 检查您的用户名和密码
  • #sciasEdge 确认我输入了正确的用户名和密码
  • 那么可能是 godaddy 不允许使用 gmail.com 邮件服务器 .. 检查 godaddy 是否为您提供合适的邮件服务器并配置此邮件服务器以进行 swifmailer 传输
  • 嗯。这是一个更好的选择。

标签: php email yii2 smtp swiftmailer


【解决方案1】:

您的配置似乎有问题,请尝试将您的配置更改为:

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

【讨论】:

    【解决方案2】:

    您的 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',
    

    【讨论】:

      猜你喜欢
      • 2019-02-05
      • 1970-01-01
      • 1970-01-01
      • 2019-03-01
      • 2012-12-20
      • 2018-07-03
      • 2016-02-07
      • 2020-11-03
      • 2021-01-04
      相关资源
      最近更新 更多