[PHP] Re: mail function and Bcc restriction?

2003-03-02 Thread Manuel Lemos
Hello,

On 03/01/2003 08:35 AM, Mirza Muharemagic wrote:
Hi all,

   are there any restrictions for mail function, when I use Bcc? how
   many email adresses can i put in Bcc, are there any PHP
   restriction, or just memory restriction, or something else?
Put them all in a single Bcc: header separating them with commas , .

--

Regards,
Manuel Lemos
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[PHP] Re: MAIL to a Bcc: ???

2001-07-11 Thread Adam

 How do I change the value of the  TO:  in a mail() function to a value
 of Bcc: ?

 Or at least trick the mail to a Bcc:So the recipients emails aren't
 shown?

if you use a database to manage the emails to be sent to, perhaps you could
create a repeating statement that sends mail to each person seperatly?

?php

$mail = mysql_query(SELECT user_email FROM mailing_list);

while ($mailarray = mysql_fetch_array($mail)) {
mail($mailarray[user_email], $subject, $content);
}

?

something like that?

-Adam



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]