This topic is locked
[SOLVED]

 Mass Mail Mon-Fri only

10/7/2015 4:28:50 AM
PHPRunner General questions
W
wfcentral author

I have setup the mass mailer add-on for a project that tracks employee time. We want to send a daily reminder if they have not entered time for the day. They only work Monday - Friday so we do not want to send the emails on Saturday/Sunday. Is there anyway to do this without having to push the manual button?

W
wfcentral author 10/7/2015

I fixed this by adding
AND WEEKDAY(NOW())<5
to my query.
WEEKDAY returns the following values
monday = 0

tuesday = 1

wednesday = 2

thursday = 3

friday = 4

saturday = 5

sunday = 6