Hi,
The only way i know that this can be done is by asking your isp for a masqerading mailbox, this way you could could have a mailing list that would forward all mail sent to say you@isp.com to your recipients with out displaying all of the individual addresses.
Or you could send an individual e-mail to everyone in a function like this...
<?php
function sendmail() {
mail("email1@aol.com", "test email", "test message");
mail("email2@aol.com", "test email", "test message");
mail("email3@aol.com", "test email", "test message");
mail("email4@aol.com", "test email", "test message");
}
?>
As long as your web-site/sendmail is running on a nice fast server it would only take 15 seconds to send out 200 e-mails
Hope this helps,
Elfyn