olinux:

I do not know the answer to your question.

However, I would alternatively suggest that you send the email to each
person individually. That is to say, loop through your recipient array and
use mail() to send the message to each recipient, as opposed to creating a
bcc array and then sending one email.

This solution will take longer to execute -- you may in fact need to adjust
the maximum program execution time via set_time_limit() -- but each
recipient will receive an individual email, which, I think, will make your
message look more personal.

Plus, you no longer need to consider the number of addresses in the bcc
field.

Let me know if you have any questions!

-luke

Luke Muszkiewicz
Pure Development, LLC
http://puredev.com


> I am using a script that grabs about 100 emails from a
> database, loops thru and writes them to $bcc
>
> Then I use a single mail() to send a msg to everyone
> in the $bcc
>
> Is there a maximum nuber of emails that i can mail to
> this way?
>
> Thanks,
> olinux


-- 
PHP Database 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]

Reply via email to