我尝试使用cakephp电子邮件组件发送邮件.但是邮件没有发送,也没有显示任何错误消息.我需要设置任何其他参数吗?这是我的代码片段:
$this->Email->from='<xyz@yahoo.com>';
$this->Email->to='<abc@gmail.com>';
$this->Email->sendAs='both';
$this->Email->delivery = 'debug';
$this->Email->send();
Run Code Online (Sandbox Code Playgroud)
小智 5
你应该尝试改变
$this->Email->delivery = 'debug';
Run Code Online (Sandbox Code Playgroud)
至
$this->Email->delivery = 'mail';
Run Code Online (Sandbox Code Playgroud)
更多信息,请访问:http: //api.cakephp.org/class/email-component