与bcc无法正常工作的php邮件

时间:2018-03-15 11:09:06

标签: php email bcc

我使用以下代码发送带有cc和密送的邮件。

$headers="From: $name <{$fromAddress}>\r\n".
            "Reply-To: info@test.com\r\n".
            "Cc: abc@gmail.com\r\n".
            "BCC: pqr@gmail.com\r\n".
            "MIME-Version: 1.0\r\n".
            "Content-type: text/html; charset=UTF-8";

@mail($toAddres,$subject,$message,$headers,$parameters);

所有的事情都很好,包括回复,cc但是密送不起作用。

在邮箱标题中,它没有显示密件抄送邮件地址。我需要解决什么问题?

2 个答案:

答案 0 :(得分:1)

您可以尝试 ICC nvisible C arbon C opy)希望是第二个名字的 BCC

顺便说一句, BCC B lind C arbon C opy。所以,如果你没有在邮件中看到它们,这是正常的。

答案 1 :(得分:0)

没有仔细查看您的代码我认为问题是他们没有收到您设置为BCC的电子邮件

原因可能是您使用了BCC而不是Bcc

更正了$ header

$headers="From: $name <{$fromAddress}>\r\n".
        "Reply-To: info@test.com\r\n".
        "Cc: abc@gmail.com\r\n".
        "Bcc: pqr@gmail.com\r\n".
        "MIME-Version: 1.0\r\n".
        "Content-type: text/html; charset=UTF-8";

我已将BCC更改为Bcc: