May 17, 2024 06:03 AM
I have a "Send an email" automation set up with the trigger "when {{Date field}} is one week from now."
It's working great, except the emails are going out just after midnight. I'd prefer them to go around 9am. I have added a time to my date field, but that does not seem to work.
Any advice?
May 17, 2024 02:32 PM
I would add a field that is datetime_diff(duedate, now(), 'hours'), then when your hours_till_due = 168 (hours) send your email. Then you can send it out at 9AM. If you change that due time to noon, it would send those out at noon.
Jun 07, 2024 06:20 AM
Thanks Dan! I thought something like this would work, was just hoping there was a native option using the time within the date field. But this workaround will do!
Jun 07, 2024 07:49 AM
Since I first responded I learned about IS_after formula. See if that works for you.