> mail($Email, $MsgTitle, "$Message\n\n\n$Content", $Header);
Here is the "culprit" -- This is going to fire up a sendmail process for
every single email.
You are going to choke your server to death with tons and tons of sendmail
processes.
Actually, after about 50 of these, the mail() functi
Hi,
Unfortunately that won`t work for me because I don`t have access to setting
up a Cronjob on this account, thanks for the suggestion though.
Ade
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
T
Hi,
I do the following in a similar case:
- I have a table with the emails to send (the addresses)
- I run a PHP script as a cronjob every X minutes (15 in my case)
- the script sends up to 1000 e-mail and delete the corresponding entry from the
table for each e-mail sent (you may want to simply
3 matches
Mail list logo