【问题标题】:Cakephp3 Set Header in Email Component : Mails are going to spamCakephp3 在电子邮件组件中设置标题:邮件将成为垃圾邮件
【发布时间】: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


    【解决方案1】:

    您可以使用设置标题功能-

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

    【讨论】:

    • 问题是邮件会变成垃圾邮件。我认为这段代码不会添加标题
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 2011-02-08
    • 2011-07-12
    • 2012-01-19
    • 1970-01-01
    • 2010-11-19
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多