php mail函数的第一个参数是to。是否仍要跳过此参数并仅使用cc/bcc发送批量邮件?
谢谢

最佳答案

您可以这样指定第四个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 protected]"\n";
    $xheaders .= "Cc:[email protected]\n";

    //.......

    mail($to, $subject, $msg, $xheaders);

$to字段中,您可以指定您的电子邮件或您喜欢的任何内容。
注意,您也可以通过逗号分隔来指定多个电子邮件地址,尽管我不确定您可以通过这种方式指定的电子邮件的确切数量。

08-28 09:04