Multi threading.. PHP and emails

A

Anonymous

Guest
swirlee.., guys any idea...
How php can be involved to multithread for sending emails..

I have an idea havn't tried it out..

*Have a script that accepts starting id and sends say about .. 30 emails..

now in the master script using a for loop call the above script with starting ids like
0, 29, 59, ...

so the load is not on one single script... ??? !! :? 8O

But I think it would work best when on CLI
 
PHP doesn't support multithreading. You could potentially use another program to start multiple instances of the same PHP script in different threads, but getting them to communicate would be a big challenge.

I've said it before: PHP is not a good choice for sending mass e-mails.
 
Back
Top