【发布时间】:2011-05-24 05:45:24
【问题描述】:
我在蛋糕中发送电子邮件时遇到问题。我的方法是这样的:
$this->Email->smtpOptions = array(
'port'=>'465',
'timeout'=>'30',
'auth' => true,
'host' => 'ssl://smtp.gmail.com',
'username'=>'mymail@gmail.com',
'password'=>'mypass',
);
$this->Email->from = "admin@localhost";
$this->Email->to = "my_test_mail@centrum.cz";
$this->Email->subject = "Test";
$this->Email->sendAs = "text";
$this->Email->delivery = 'smtp';
$this->Email->send('Hello message body!');
但是当我尝试发送电子邮件时,我收到了:
555 5.5.2 Syntax error. l3sm512374fan.0
我需要进行哪些更改才能使其正常工作?
谢谢
【问题讨论】:
标签: php email cakephp smtp cakephp-1.3