RE: [PHP] using mail() - what is max number of email addresses I can specify in To field?

2003-10-24 Thread Wouter van Vliet
AIL PROTECTED] Sent: Thursday 23 October 2003 06:54 To: John Christopher Cc: [EMAIL PROTECTED] Subject: Re: [PHP] using mail() - what is max number of email addresses I can specify in To field? It really depends on the mta you use... if your going to use mail(); the I would put the list of addresse

Re: [PHP] using mail() - what is max number of email addresses I can specify in To field?

2003-10-22 Thread Rolf Brusletto
It really depends on the mta you use... if your going to use mail(); the I would put the list of addresses in an array and the do foreach($addressArray as $address) { mail($address,'Here is your subject','Here is your content'); } Rolf Brusletto http://www.phpexamples.net John Christopher wrote:

Re: [PHP] using mail() - what is max number of email addresses I can specify in To field?

2003-10-22 Thread Marco Tabini
I'm not sure if you've considered this possibility--but can't you send the messages to one recipient at a time? This way, the problem wouldn't present itself, and the end result would be quite the same (with the added bonus of not having to disclose your entire mailing list to each recipient).