我嘗試使用cakephp電子郵件組件發送郵件。但郵件沒有發送,也沒有顯示任何錯誤信息。我是否需要設置其他參數?這裏是我的代碼片段:如何使用cakephp電子郵件組件發送電子郵件?
$this->Email->from='<[email protected]>';
$this->Email->to='<[email protected]>';
$this->Email->sendAs='both';
$this->Email->delivery = 'debug';
$this->Email->send();
我遇到了一些問題,CakePHP的電子郵件組件 - 我發現,使用SMTP時,我只能發送郵件。你可能想試試看它是否有效(http://book.cakephp.org/view/1290/Sending-A-Message-Using-SMTP)。另外,您是否設置了電子郵件模板? (http://book.cakephp.org/view/1286/Sending-a-basic-message#Setting-up-the-Layouts-1287) – Tomba 2011-02-07 18:08:03