3 我在发送邮件时遇到错误。下面我提到了我的代码。
在控制器文件中 var $components = array('RequestHandler', 'Filter','Image','Email','Captcha','RandomHelper');
然后在我的函数中我写了 $this->Email->from = $from;
$this->Email->subject = 'Approval Form: ';
$this->Email->delivery = 'debug';
$this->Email->template = 'adminemail';
$this->Email->sendAs = 'html';
$this->Email->send();
我不想使用 SMTP 发送邮件。当我运行此代码时,错误是缺少帮助文件,它告诉我“错误:无法找到或不存在帮助文件 app/views/helpers/email.php。” 任何人都可以帮助我