小编Tal*_*han的帖子

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

我正在尝试在 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 
Run Code Online (Sandbox Code Playgroud)

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

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

php email smtp swiftmailer yii2

5
推荐指数
1
解决办法
4419
查看次数

标签 统计

email ×1

php ×1

smtp ×1

swiftmailer ×1

yii2 ×1