Re: [PHP-WIN] mail to too many users

2002-01-29 Thread Pac mon
Sounds like a mass-junk mail to me > >I need to send an email to 19000 users using a script, any suggestions. >Looping on a result set using the mail function would kill the server. >I know it can be done using a mailing list module but I'm running a >windows machine with IIS, what's the best thin

RE: [PHP-WIN] mail to too many users

2002-01-29 Thread Martin Lindhe
> > >>> "Jim Lucas [php]" <[EMAIL PROTECTED]> 01/28/02 03:47PM >>> > > with php's mail() funciton you can send to multiple > recipents via the > > headers. just build the headers so it will BCC to > everybody at once. > > one word of caution, you can only have a header that is 5kb or > > sm

RE: [PHP-WIN] mail to too many users

2002-01-29 Thread Symeon Charalabides
> >>> "Jim Lucas [php]" <[EMAIL PROTECTED]> 01/28/02 03:47PM >>> > with php's mail() funciton you can send to multiple recipents via the > headers. just build the headers so it will BCC to everybody at once. > one word of caution, you can only have a header that is 5kb or > smaller. > otherwise p

RE: [PHP-WIN] mail to too many users

2002-01-29 Thread Svensson, B.A.T. (HKG)
>From: Mostafa Al-Mallawani >Sent: Tuesday, January 29, 2002 6:43 AM >How big would a string of 19000 email addresses be? Can anyone estimate? Anything between 200KB and 1MB. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

RE: [PHP-WIN] mail to too many users

2002-01-29 Thread Martin Lindhe
> How big would a string of 19000 email addresses be? Can > anyone estimate? you wouldnt want to send all mails in one call to mail(), loop and do a couple of hundred bcc's in each time or something /Martin -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROT

RE: [PHP-WIN] mail to too many users

2002-01-29 Thread Ross Fleming
A byte per character. -Original Message- From: Mostafa Al-Mallawani [mailto:[EMAIL PROTECTED]] Sent: 29 January 2002 05:43 To: 'Angie Tollerson'; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: [PHP-WIN] mail to too many users How big would a string of 19000 email addresse

Re: [PHP-WIN] mail to too many users

2002-01-28 Thread Ignatius Teo
;" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Tuesday, January 29, 2002 4:43 PM Subject: RE: [PHP-WIN] mail to too many users > How big would a string of 19000 email addresses be? Can anyone > estimate? > > -Original Message-

RE: [PHP-WIN] mail to too many users

2002-01-28 Thread Mostafa Al-Mallawani
How big would a string of 19000 email addresses be? Can anyone estimate? -Original Message- From: Angie Tollerson [mailto:[EMAIL PROTECTED]] Sent: Monday, January 28, 2002 11:55 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP-WIN] mail to too many users

Re: [PHP-WIN] mail to too many users

2002-01-28 Thread Angie Tollerson
Last I heard BCC and CC wasn't working for Windows...it would only send to the first person in the list. That's what it did for me 6 months ago..has that been fixed? Thanks! Angie >>> "Jim Lucas [php]" <[EMAIL PROTECTED]> 01/28/02 03:47PM >>> with php's mail() funciton you can send to multiple

Re: [PHP-WIN] mail to too many users

2002-01-28 Thread Jim Lucas [php]
with php's mail() funciton you can send to multiple recipents via the headers. just build the headers so it will BCC to everybody at once. one word of caution, you can only have a header that is 5kb or smaller. otherwise php will start truncating the header. Found that out the hard way. so, jus