[quote]Al, sure thing ...
My host only allows 200 e-mails per hour, so I cap phpList at roughly 150 per hour with the following batch (cron processes the queue every 15 minutes)
[color=blue]define("MAILQUEUE_BATCH_SIZE",38);
define("MAILQUEUE_BATCH_PERIOD",900);
define('MAILQUEUE_THROTTLE',6);
[/color]
I may readjust these to send a single batch of 150 message once per hour, but have to test it first to make sure the script does not exceed time limits when doing so. Until then, I'll stick with the smaller batches.
cheers,
Don
[/quote]
Thanks for the tip ... I am working on your solution but I have a question:
Why did you have to break the emails dispatched into 4 times an hour? why didn't you simply assign 150 messages for a batch period of 3600. Although you have asked this, I have to ask you again in case you got an answer. In other words, I wonder if the program require such repetitive calls of the processqueue function?
Not sure if I make sense myself
Thanks anyway.