2011-12-04 74 views

回答

0

你可以在你的控制器配置格式:

//Send as 'html', 'text' or 'both' (default is 'text') 
$this->Email->sendAs = 'both'; // because we like to send pretty mail 
// more code here 
$this->Email->send(); 

如果这是由服务器此举引发,它可能是你缺少一个文件,而不是一行代码。在这种情况下,请确保您为这两种类型的电子邮件都设置了布局。下面是该文件结构的检查:

app/views/layouts/email/ 
    html/ 
     default.ctp 
    text/ 
     default.ctp 

更多从食谱: http://book.cakephp.org/view/1286/Sending-a-basic-message

相关问题