我無法使用codeigniter中的mediatemple發送電子郵件。我檢查了電子郵件密碼和smtp主機,它們是正確的。mediatemple - 無法使用codeigniter發送電子郵件
這是錯誤:
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' => '[email protected]',
'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
如果您是通過SSL連接,它的拒絕連接,它可能是你沒有安裝的SSL /啓動/上正確配置了服務器。你的'phpinfo()'看起來像什麼? – Seabass
支持SSL,已啓用。 – user1217380
您可能會在本地機器中使用 – saravanabawa