我第一次研究 cakephp 电子邮件组件。我从本地主机发送这样的电子邮件:
$this->Email->smtpOptions = array( 'port'=>'465',
'timeout'=>'30',
'host'=>'smtp.gmail.com',
'username'=>'mygmail@gmail.com',
'password'=>'mygmailpassword'
);
$this->Email->delivery = 'smtp';
$this->Email->from = "mygmail@gmail.com";
$this->Email->to = "yourgmail@gmail.com";
$this->Email->subject = "Subject";
$this->Email->sendAs = 'html';
$this->Email->lineLength = 255;
$body = "<h1>This is body</h1>";
$this->Email->send( $body );
它没有发送任何电子邮件,甚至没有显示任何错误。
有什么遗漏吗?
谢谢