Martin Zvarík wrote:

> Hello--
>     I want to send email to 100+ recipients. Two choices I thought of:
> 
> 1) once call mail() and use BCC, but the negative of this method is
> that every recipient in BCC has header "To" same (so I used to put my
> email in here - not email of one of the recipients).
> 
> 2) several calls to mail() function with each recipient's emal

I would be tempted to generate a shell-script with emails and sendmail
commands inline, then do exec() on that. 

Something along these lines:

sendmail -oi -f <from> <to> <<XXXX
email
email
email
email
XXXX
sendmail -oi -f <from> <to> <<XXXX
email
email
email
email
XXXX
.
.
.
.
.
etc.


/Per Jessen, Zürich

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

Reply via email to