9215 Posts in 1860 Topics by 1451 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 899 Views |
-
Newsletter - how to slow down the sending?

16 November 2009 at 10:45pm
We need to send out 1500 emails, but our host (in common with many other hosts) block bulk emails if more than 500 per hour are sent out.
Many people do not realise that their hosts do this, and receive no warning that their emails haven't been sent (our host phoned us up and told us last time).
With this in mind, is there a way to slow down the sending of emails from the Newsletter module?
I thought that adding the sleep() command would work, but don't know where to put it.
<?php
sleep(4);
?>
Any suggestions? Thanks
-
Re: Newsletter - how to slow down the sending?

15 January 2010 at 3:18pm Last edited: 15 January 2010 3:43pm
I've got the same issue - I'm assuming newsletter/code/BatchProcess.php is where this is defined, but don't know how to do it. Any help would be appreciated!
-
Re: Newsletter - how to slow down the sending?

10 June 2011 at 8:36pm
The file that you are looking for is NewsletterEmailProcess.php
After the line of code that reads '$newsletter->write();' [line 119]
add the sleep command.... so it looks like this:
$newsletter->ParentID = $this->newsletter->ID;
$newsletter->write();
sleep(8);
| 899 Views | ||
|
Page:
1
|
Go to Top |



