php mail bcc multiple recipients

后端 未结 4 1560
萌比男神i
萌比男神i 2020-12-06 10:14

How do I make a bcc mail? If I send that mail, It shows me all the recipients!

$to=array();
$members_query = mysql_query(\"select email from members\");
whil         


        
4条回答
  •  粉色の甜心
    2020-12-06 10:36

    CC and BCC can be sent as headers (see: http://php.net/manual/en/function.mail.php).

    You can also use other mail libraries - the PEAR Mail library makes sending emails a little more object-oriented. http://pear.php.net/package/Mail/redirected

提交回复
热议问题