Email send based on day.

4 posts by 2 authors in: Forums > CMS Builder
Last Post: October 30, 2017   (RSS)

By Toledoh - October 27, 2017

Hi All.

I've got the standard form to email code, with the email address stored in CMSB using:

$to = $snippetsRecord['bookings_contact'];

Do you think it's viable to do something like:

if (today is friday afternoon to sunday night) {
$to = $snippetsRecord['bookings_contact_after_hours'];
else
$to = $snippetsRecord['bookings_contact'];

Cheers,

Tim (toledoh.com.au)

By leo - October 30, 2017

Hi Tim,

Syntax-wise it should work as long as you haveĀ $snippetsRecord['bookings_contact_after_hours'] defined. Let me know if it's not working or you have questions.

Thanks!

Leo - PHP Programmer (in training)
interactivetools.com

By Toledoh - October 30, 2017

Great - thanks.

Can you give me any direction on how to set up those "if" statements?

Cheers,

Tim (toledoh.com.au)