php - Progress bar / animated.gif during phpmailer email send -
i created members based website , when post new articles, (similar blog post), use phpmailer send email out members requested email sent them. the email contains new articles content. title, description etc.. i'm in beta testing stage right now, , 3 email accounts takes 9 seconds send out 3 email when make new post. 3 seconds per email. i expect around 100 users on site, = 5 minutes send out emails. question is there way can hook real time progress bar show how time left when sending emails? my setup this: i have form connected action script. <?php include($_server['document_root'] . "/core/init.php"); // new data $title = $_post['title']; $description = $_post['description']; // query $addnotice = db::getinstance()->insert('table1', array( 'title' => $title, 'description' => $description, )); $id = isset($_post['id']); $users = db::geti