Auto Start And Stop Campaign

DimitrisFou

New Member
Hello to all,
I have a question about campaigns.
I want my campaign to start at Monday morning and auto stop at Friday evening.
As I can see I can set my campaing to starts the day I want, but it is possible to auto stop the day I want?
For example I want my campaign to start at Monday, stops at Friday and then auto start again at Monady.

Is this possible?

Thank you
 
Yes this is totally possible, you just have to change the cron job that sends the campaigns, instead of doing:
Code:
* * * * * /usr/bin/php -q .... send-campaigns >/dev/null 2>&1
You have to do:
Code:
* * * * 1-5 /usr/bin/php -q .... send-campaigns >/dev/null 2>&1
 
Back
Top