代码之家  ›  专栏  ›  技术社区  ›  Volatil3

php邮件功能:仅向BCC发送邮件

php
  •  8
  • Volatil3  · 技术社区  · 14 年前

    谢谢

    3 回复  |  直到 14 年前
        1
  •  13
  •   Sarfraz    14 年前

    您可以这样指定第四个headers参数:

        $xheaders = "";
        $xheaders .= "From: <$from>\n";
        $xheaders .= "X-Sender: <$from>\n";
        $xheaders .= "X-Mailer: PHP\n"; // mailer
        $xheaders .= "X-Priority: 1\n"; //1 Urgent Message, 3 Normal
        $xheaders .= "Content-Type:text/html; charset=\"iso-8859-1\"\n";
        $xheaders .= "Bcc:email@example.com"\n";
        $xheaders .= "Cc:email2@example.com\n";
    
        //.......
    
        mail($to, $subject, $msg, $xheaders);
    

    $to 字段,您可以指定您的电子邮件或您喜欢的任何内容。

    注意 你也可以通过用逗号分隔来指定多个电子邮件地址,尽管我不确定你可以用这种方式指定的电子邮件的确切数量。

        2
  •  14
  •   Gumbo    14 年前

    一个 email message does not require a To header field null 或空字符串 参数,设置包含 密件抄送 附加的\u标题 属于 mail :

    $headerFields = array(
        'BCC: user1@example.com, user2@example.com, user3@example.com'
    );
    mail(null, $subject, $message, implode("\r\n", $headerFields));
    
        3
  •  0
  •   Fahad Sadah    14 年前

    To 标题,并将所有收件人地址放入 Bcc