Re: [PHP] bulk mail

2002-08-27 Thread Justin French
on 28/08/02 9:17 AM, Pupeno ([EMAIL PROTECTED]) wrote: > I know a lot has been discussed in this topic, but I still don't find any > solution. > What I want to do is send a lot of mails triggered from a web page using > php. > I've found diferent solutions but all of them has some problem: > 1)

Re: [PHP] bulk mail()

2002-06-14 Thread Justin French
on 15/06/02 5:32 AM, Pawel ([EMAIL PROTECTED]) wrote: > You're using something like mysql_fetch_array and not querying the db 120 > times I hope. of course! :) > The time your MTA takes to process the emails has nothing to do with this. > 120 calls to mail() should not time out, maybe you have

RE: [PHP] bulk mail()

2002-06-14 Thread Pawel
> > -Original Message- > > From: Justin French [mailto:[EMAIL PROTECTED]] > > Sent: Wednesday, June 12, 2002 6:45 AM > > To: php > > Subject: [PHP] bulk mail() > > > > > > Hi all, > > > > I've got a mailing on a website, with email address' / names / etc in a > > MySQL table. > > > > I th

RE: [PHP] bulk mail()

2002-06-14 Thread Jeff Field
I've been doing the following sending personalized mail to 600+ recipients, so far without any signs of discomfort anywhere: set_time_limit($total_rows * 1); // up the script timeout 1 second per email BTW, I use qmail; not sendmail. As I've never used sendmail, I don't know if this is part of

Re: [PHP] bulk mail()

2002-06-12 Thread Paul Roberts
PROTECTED] - Original Message - From: "Niklas Lampén" <[EMAIL PROTECTED]> To: "Php-General" <[EMAIL PROTECTED]> Sent: Wednesday, June 12, 2002 1:08 PM Subject: RE: [PHP] bulk mail() One solution could be this: You only need on page for this: 1) create

Re: [PHP] bulk mail()

2002-06-12 Thread 1LT John W. Holmes
Do it just like you would with prev/next links. Use LIMIT in your query to get out 50 or so at a time. Loop through them, sending mail, then use header to automatically redirect to the next page, incrementing the number to use in LIMIT. ---John Holmes... - Original Message - From: "Justi

RE: [PHP] bulk mail()

2002-06-12 Thread Niklas Lampén
One solution could be this: You only need on page for this: 1) create an array of recipients 2) get value from array like array[$pos]; 3) send mail to this receiver 4) now some javascript, unless ofcourse if $pos is bigger than count($array): location.href = "http://blah.com/foo.php?pos= An