Schedule for daily send

garyp

New Member
I have some large lists of existing customers who are segmented into Country specific lists.

Id like to send a single email to a 5000 customer list over a period of 10 days at the same time every day.

At the moment Im restricting the server send limit to 500 per day to do this but it rolls over at midnight and sends the next 500 when Id like them to go at 6:00am local time.

Is it possible to do this in anyway please? I cant seem to find an option.
 
@garyp - how about making the cron job run each hour of the day except first hour at midnight? That might help, and you'd have to just modify the cron job for send-campaigns
Code:
* 1-23 * * * /usr/bin/php .... send-campaigns ....
 
Back
Top