i want to send an html page by mail, to many persons. Is it possible that each one of their mail clients show only their email address? Bcc shows only the address given in the mail() function. Please help.Thnx.
Loop through an array of email addresses...
$to = array('first@email.com','second@email.com','third@email.com'); for ($i=0;$i<sizeof($to);$i++) { mail($to[$i],$subject,$message,$header); }
You can also build the array of address with a loop