0

我正在尝试在我们的 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;

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

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

4

1 回答 1

1

尝试 $headers 的数组形式 -

$headers[] = 'Content-type: text/html; charset=iso-8859-1';
$headers[] = 'From: '.$email;
$headers[] = 'Bcc: myemail@email.com';
于 2015-04-08T17:43:47.260 回答