Re: [PHP] mailing in batches

2001-07-24 Thread Nicklas af Ekenstam
So sprach »Justin Farnsworth« am 2001-07-24 um 04:52:57 -0400 : > > Handling all those bounces manually will be a mess. > > From: Don Read <[EMAIL PROTECTED]>: > No matter which MTA you use. I'd have to disagree slightly here. Using qmail as your MTA would bless you with the VERP (Variable Env

Re: [PHP] mailing in batches

2001-07-24 Thread Alexander Skwar
So sprach »Don Read« am 2001-07-24 um 13:56:51 -0500 : > Folks whack at Sendmail for its past security sins (old news) + complex > (& near impossible to master) .cf configuration. But I know i spent more hours > setting up my first UUCP box then i ever did on sendmail.cf ... > > Once setup by a c

Re: [PHP] mailing in batches

2001-07-24 Thread Don Read
On 24-Jul-2001 Alexander Skwar wrote: > So sprach »Justin Farnsworth« am 2001-07-24 um 04:52:57 -0400 : >> > > Also is there any examples of this kind of app? >> >> Just do something like this with shell, logically >> >> while read_line_from_email_address_list ; do >> cat your_text_file |

Re: [PHP] mailing in batches

2001-07-24 Thread Alexander Skwar
So sprach »Justin Farnsworth« am 2001-07-24 um 04:52:57 -0400 : > > > Also is there any examples of this kind of app? > > Just do something like this with shell, logically > > while read_line_from_email_address_list ; do > cat your_text_file | mail -s "Your Subject" address_from_list; >

Re: [PHP] mailing in batches

2001-07-24 Thread Justin Farnsworth
> > Also is there any examples of this kind of app? Just do something like this with shell, logically while read_line_from_email_address_list ; do cat your_text_file | mail -s "Your Subject" address_from_list; sleep 1; done; and put it in the background. You only need the sleep

Re: [PHP] mailing in batches

2001-07-24 Thread Mirek Novak
Hi, I had to solve very similar problem - solution was to store prepared e-mails in database and send them with an external program using cron to run it. I'm sending about 40,000 announces per day with my system with no problems. Mirek Novak --- Matthew Delmarter píše: > I want to set up a scri