0

我正在尝试让我正在开发的网站发送密码提醒电子邮件。我有使用我的 Gmail 帐户只是为了测试的想法。从蛋糕食谱中,我得到了这个代码:

$this->Email->from = 'support@site.com';
$this->Email->smtpOptions = array(
    'port'=>'465',
    'timeout'=>'30',
    'host' => 'ssl://smtp.gmail.com',
    'username'=>'notmyrealemail@gmail.com',
    'password'=>'notmyrealpassword');
$this->Email->delivery = 'smtp';
$this->Email->from = 'support@imgstore.in';
$this->Email->to = $this->request->data['User']['email'];
$this->Email->subject = 'Your account reset request';
$this->Email->send('testing');
$this->Email->send();
debug($this->Email->smtpError);

但是,当执行此代码时,我收到此错误:

Error: Call to a member function messageID() on a non-object    
File: C:\xampp\htdocs\site\lib\Cake\Controller\Component\EmailComponent.php 
Line: 312

Notice: If you want to customize this error message, create app\View\Errors\fatal_error.ctp

我在这里做错了什么?目前我只想测试我的应用程序是否可以正确发送电子邮件。但是,Gmail 会是一种向生产中的用户发送电子邮件的好方法吗?

谢谢。

4

1 回答 1

0

它似乎是您没有将组件类包含到您的控制器中。将 包含EmailComponent到您的控制器文件中。

public $components = array('Email');
于 2012-08-17T04:18:30.307 回答