我无法在 codeigniter 中使用 mediatemple 发送电子邮件。我检查了电子邮件密码和 smtp 主机,它们是正确的。
这是错误:
Severity: Notice
Message: fwrite() [function.fwrite]: send of 12 bytes failed with errno=10054 An existing connection was forcibly closed by the remote host.
Filename: libraries/Email.php
Line Number: 1846
这是我的代码:我已将 sxxxxx.gridserver.com 替换为正确的 smtp。
function _sendEmail($from,$fromname,$to,$subject,$message){
$config = array(
'protocol' => 'smtp',
'smtp_host' => 'sxxxxx.gridserver.com',
'smtp_port' => 465,
'smtp_user' => 'noreply@mywebsite.com',
'smtp_pass' => 'mypass'
);
$this->load->library('email',$config);
$this->email->set_newline("\r\n");
$this->email->from($from,$fromname);
$this->email->to($to);
$this->email->subject($subject);
$this->email->message($message);
$this->email->send();
}
任何帮助,将不胜感激。
编辑:我已经使用端口 25 解决了这个问题。