Codeigniter电子邮件类无法发送电子邮件,因为连接已被主机中的软件中止

时间:2017-12-23 04:52:01

标签: codeigniter email

这是我在使用带有Google smtp设置的电子邮件类时遇到的错误。

Severity: Notice

Message: fwrite(): send of 5 bytes failed with errno=10053 An established connection was aborted by the software in your host machine.

Filename: libraries/Email.php

Line Number: 2250

Backtrace:

这是我编写的用于发送消息的控制器文件中的电子邮件类配置

$config = array(
                'protocol'  => 'smtp',
                'smtp_host' => 'smtp.gmail.com',
                'smtp_port' => 465,
                'smtp_user' => 'xxxx@gmail.com',
                'smtp_pass' => 'xxxxx',
                'mailtype'  => 'html',
                'charset'   => 'utf-8'
                );

0 个答案:

没有答案