Hi,
Just before line 154 of the admin/includes/functions/
($email_addresses_result->MoveNext();)
You could add the following code:
PHP Code:
$num_emails_in_batch++
if ($num_emails_in_batch > 100) {
$num_emails_in_batch = 0;
sleep(10);
}
You should also add the following before the while loop on line 65:
PHP Code:
$num_emails_in_batch = 0;
Just good coding practice! :)
I might make this simple functionality an option in the next version with a configurable number of e-mails in a batch and sleep time.
All the best...
Conor
Ceon