1

蛋糕电子邮件不起作用

这是代码 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. 请帮帮我。

编辑:现在我已经解决了这个错误谢谢

4

1 回答 1

1

您需要配置 SMTP 服务器。有关详细信息,请参阅此页面:http: //book.cakephp.org/2.0/en/core-utility-libraries/email.html

您的示例显示没有邮件服务器配置

于 2013-09-16T10:29:05.980 回答