这是我在使用带有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'
);