因此,代碼:爲什麼電子郵件沒有到達目的地(笨)
$this->load->library('email');
$this->email->from('[email protected]', 'mysite');
$this->email->to($email);
$this->email->subject('Email Test');
$this->email->message('Testing the email class.');
$this->email->send();
我不明白爲什麼沒有錯誤,當我發送一封電子郵件,但是當我檢查我的電子郵件中,沒有電子郵件,所以它看起來像電子郵件沒有達到他的目的地,我使用CodeIgniter,也許我需要添加一些其他設置來解決這個問題?請幫忙!!
PS:我也用本地mail()函數,反正郵件不來,我檢查它在Gmail中
Your message has been successfully sent using the following protocol: mail
From: "mysite"
Return-Path:
Reply-To: "[email protected]"
X-Sender: [email protected]
X-Mailer: CodeIgniter
X-Priority: 3 (Normal)
Message-ID: <[email protected]>
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
=?utf-8?Q?Email_Test?=
Testing the email class.
是有什麼錯嗎?
檢查垃圾郵件呢! – Prasanth 2012-08-06 04:48:36
檢查您的郵件服務器的日誌,以瞭解在PHP移交電子郵件後會發生什麼。請記住,PHP實際上並不會將電子郵件發送到遠程郵箱/郵件服務器,它只是將它交給本地(ish)SMTP服務器,並且它是負責交付的服務器。 – 2012-08-06 04:48:48
你有郵件服務器嗎? – 2012-08-06 04:48:58