我想嘗試發送郵件使用蛋糕php。我沒有發送郵件的經驗。所以,我不知道從哪裏開始。是否需要製作郵件服務器?如果需要,如何製作郵件服務器以及如何發送郵件?請一步一步解釋。我真的不知道從哪裏開始。如何使用蛋糕php發送郵件以及從哪裏開始?
我使用xampp,現在我測試我的網站在本地。
我測試了以下鏈接:
http://book.cakephp.org/view/1286/Sending-a-basic-message
但發生錯誤不能直接訪問。
,然後我添加代碼從以下鏈接:
http://book.cakephp.org/view/1290/Sending-A-Message-Using-SMTP
所以,我的代碼如下:
function _sendMail(){
$this->Email->to = '[email protected]';
$this->Email->bcc = array('[email protected]');
$this->Email->subject = 'Welcome to our really cool things';
$this->Email->replyTo = '[email protected]';
$this->Email->from = 'Online Application <[email protected]>';
$this->Email->template = 'simple_message';
$this->Email->sendAs = 'both';
$this->Email->smtpOptions = array(
'port' =>'25',
'timeout' => '30',
'host' => 'ssl://smtp.gmail.com',
'username' => '[email protected]',
'password' =>'aaa',
);
$this->Email->delivery = 'smtp';
$this->Email->send();
}
但錯誤仍然發生。但是,我沒有製作任何郵件服務器。那可以嗎?
向我們展示**代碼所在的**控制器方法**以及您如何嘗試調用它! – deceze