蛋糕电子邮件不起作用
这是代码 app/config/email.php
public $default = array(
'transport' => 'Mail',
'from' => 'abcd@gmail.com',
//'charset' => 'utf-8',
//'headerCharset' => 'utf-8',
);
并在 app/controller/UsersController
email = new CakeEmail();
$email->template('activate_your_account', 'default')
->config('smtp')
->emailFormat('html')
->subject(__('Account Verification - ' . Configure::read('Application.name')))
->to($user)
->from(Configure::read('Application.from_email'))
->viewVars(array('hash' => $hash, 'id' => $id))
->send();
当我运行它时,我会收到类似An internal error has occurred
. 请帮帮我。
编辑:现在我已经解决了这个错误谢谢