我想使用codeIgniter的電子郵件庫發送電子郵件。Codeigniter電子郵件 - `554 SMTP同步錯誤
下面是我的代碼
$config = Array(
'protocol' => 'smtp',
'smtp_host' => 'smtp.myserver.com',
'smtp_user' => '[email protected]',
'smtp_pass' => '********',
'mailtype' => 'html',
'wordwrap' => false,
'charset' => 'utf-8'
);
$this->email->initialize($config);
$this->email->set_newline("\r\n");
$this->email->from('[email protected]', 'xxx');
$this->email->subject('blah blah');
$this->email->message('a simple html message');
$this->email->to('[email protected]');
$this->email->send();
代碼是不同勢服務器&上它正在使用不同的服務器的郵件(是的,兩個不同的域)
例如代碼是yourserver.com,它正在使用smtp of myserver.com
它工作正常,直到早上。但現在我越來越
554 SMTP synchronisation error
(見全print_debugger()輸出附件,我隱藏一些敏感信息。我可以信任你們不是全部)
感謝。
我會嘗試獲取郵件日誌條目。我沒有訪問服務器。 – Ravi 2014-09-16 13:48:44