I was looking into that but though it went off number of recipients in a single send.
Assuming I am using
Code:
$mail->loadPlugin(new Swift_Plugin_AntiFlood(1, 10));
If I have code like:
Code:
$mail->send('person1@email.com', 'no-reply@mydomain.com', 'The subject', 'The body');
$mail->send('person2@email.com', 'no-reply@mydomain.com', 'The subject', 'The body');
$mail->send('person3@email.com', 'no-reply@mydomain.com', 'The subject', 'The body');
$mail->send('person4@email.com', 'no-reply@mydomain.com', 'The subject', 'The body');
Will the anti span plug-in send line 1, wait 10 seconds, send line two, wait 10s, etc.? I was looking on the website and there is limited documentation on how this plug-in works.
Bookmarks