【发布时间】:2016-11-08 03:29:54
【问题描述】:
我需要如下设置标题
$headers ="From:<$from>\n";
$headers.="MIME-Version: 1.0\n";
$headers.="Content-type: text/html; charset=iso 8859-1";
如何将它写入 cakephp3 中的电子邮件组件。代码如下
$this->email->emailFormat('html');
$this->email->from([$data['sender'] => $data['sender_name']]);
$this->email->to($to)
$this->email->subject($data['subject']);
$this->email->send();
我希望这样可以防止垃圾邮件。邮件会变成垃圾邮件。谢谢大家。
【问题讨论】:
标签: php cakephp-3.0