密送:使用自定义Wordpress mail.php联系表单

时间:2015-04-08 17:38:29

标签: wordpress email phpmailer bcc

我正在尝试在我们的Wordpress网站上有一个自定义联系表单,在将完成的表单发送给收件人时向我发送密件抄送。表单的$ headers部分如下所示:

        $headers  = 'Content-type: text/html; charset=iso-8859-1'."\r\n";
        $headers .= 'From: '.$email;

我试图用这个来获得密件抄送:

        $headers  = 'Content-type: text/html; charset=iso-8859-1'."\r\n";
        $headers .= 'From: '.$email;
        $headers .= 'Bcc: '.myemail@email.com;

...但它只发送给标准收件人,而不是Bcc地址。

你能看出我做错了什么吗?非常感谢!

1 个答案:

答案 0 :(得分:1)

尝试$ header的数组形式 -

$headers[] = 'Content-type: text/html; charset=iso-8859-1';
$headers[] = 'From: '.$email;
$headers[] = 'Bcc: myemail@email.com';