Cakephp3在电子邮件组件中设置标题:邮件将发送垃圾邮件

时间:2016-11-06 20:36:13

标签: php cakephp-3.0

我需要将标题设置如下

$headers ="From:<$from>\n";
$headers.="MIME-Version: 1.0\n";
$headers.="Content-type: text/html; charset=iso 8859-1";

如何将它写入cakephp3中的Email组件。代码如下

$this->email->emailFormat('html');
$this->email->from([$data['sender'] => $data['sender_name']]);
$this->email->to($to)
$this->email->subject($data['subject']);
$this->email->send();

我希望这可以防止垃圾邮件。邮件会发送垃圾邮件。谢谢。

1 个答案:

答案 0 :(得分:-1)

您可以使用set headers function -

$ this-&gt; email-&gt; setHeaders(['From:\ n','MIME-Version:1.0 \ n','Content-type:text / html; charset = iso 8859-1']) ;