此郵件功能不起作用。爲什麼我的電子郵件功能不能在CodeIgniter中工作
在下面的代碼中,$tomail
和$frommail
參數是正確的,但郵件沒有收到我的Gmail帳戶。
$this->load->library('email');
$config['mailtype'] = 'html';
$config['wordwrap'] = TRUE;
$this->email->initialize($config);
$this->email->to($to);
$this->email->from($from);
$this->email->cc($cc);
$this->email->subject($subject);
$this->email->message($message);
$this->email->send();
if (! $this->email->send())
{
echo $this->email->print_debugger();
什麼是不工作?什麼是錯誤?你有什麼嘗試? – Laurence 2012-07-30 10:50:01
沒有錯誤顯示。 $ to,$都是正確的達到 – shine 2012-07-30 11:53:03
你在本地主機上運行它嗎?你有SMTP設置? – 2012-08-03 08:07:56