RE: [PHP] stop a batch of mail during send

2001-08-13 Thread Maxim Maletsky
try to learn about register_shut_down (whatever the actual name of it was) function. let me see, here: http://www.php.net/manual/en/function.register-shutdown-function.php this could be of some help to you. Cheers, Maxim Maletsky -Original Message- From: Matthew Delmarter [mailto:[EMA

Re: [PHP] stop a batch of mail during send

2001-08-13 Thread Evan Nemerson
If the server is linux, you could have another page that just sends a KILL signal to PHP using exec(), system(), backtics, whatever... On Monday 13 August 2001 20:56, you wrote: > Let's say I am mailing 1000 members of a mailing list - is it possible > to stop the process once started? In part