どのようにしてbccメールを作成できますか? 私はそのメールを送信すれば、それは私にすべての受信者を示しています!php mail bcc複数の受信者
$to=array();
$members_query = mysql_query("select email from members");
while($row = mysql_fetch_array($members_query))
{
array_push($to, $row['email']);
}
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=UTF-8' . "\r\n";
// Additional headers
//$headers .= 'To: '.$newName.' <'.$newEmail.'>' . "\r\n";
$headers .= 'From: SmsGratisan.com <[email protected]' . "\r\n";
mail(implode(',', $to), $title, $content, $headers);
ありがとうございます!
。例については、[the manual](http://php.net/manual/en/function.mail.php)を参照してください。 –