Re: [PHP] bulk emailer

2005-03-14 Thread Redmond Militante
can anyone recommend a good mailing list software that may be adapted for these purposes? [Fri, Mar 11, 2005 at 02:34:01PM -0800] This one time, at band camp, Richard Lynch said: A better answer, all around, might be to use a mailing list software package for sending bulk email -- They've

Re: [PHP] bulk emailer

2005-03-12 Thread Leif Gregory
Hello Richard, Friday, March 11, 2005, 3:34:01 PM, you wrote: RL The mail() function is designed for quickie one-off emails, not RL sending out thousands. Hell, it can't even handle dozens, not RL reliably, at least not on some hardware/connections. I've used it to send a little over 3,000. On

[PHP] bulk emailer

2005-03-11 Thread Redmond Militante
hi i need some advice on making a bulk emailer script more robust. what i'm currently doing: -using mysql_fetcharray() to loop through an array of query results -for each iteration of the loop, get an email address from the current row in the result set, and use it with the mail() function to

Re: [PHP] bulk emailer

2005-03-11 Thread Richard Lynch
what i'm currently doing: -using mysql_fetcharray() to loop through an array of query results -for each iteration of the loop, get an email address from the current row in the result set, and use it with the mail() function to send out an individual email to that email address, then echo out

Re: [PHP] bulk emailer

2005-03-11 Thread Nicholas W . Miller
On Mar 11, 2005, at 2:34 PM, Richard Lynch wrote: what i'm currently doing: -using mysql_fetcharray() to loop through an array of query results -for each iteration of the loop, get an email address from the current row in the result set, and use it with the mail() function to send out an