tags:

views:

22

answers:

2

Hi,

I am sending Mass mail in PHP using the third party tool "PHP List".When as I am running the php list "process_queue.php" from my system within Iframe.Thehe browser continuously loading.also the browser get hanged.

What i need after run that "process_queue.php" script,i just want to show the static output "mail processing" notification instead of browser get loading for long time.

Could you pleas advice.

Regards, Suresh Ram

+1  A: 

Rather than executing it through HTTP, consider using the provided command-line script or executing a cron job.

See the documentation for more information.

Matthew Flaschen
A: 

You can use ajax to send request to PHP for each email and then can show progress on the page as well.

Umair Ashraf