
Announcements
I have a Flow that runs every day, except Saturday and Sundays, with a 'Recurrence'.
Every day will run a 'Condition' and send an email, but if that day is Monday it will send a different email. I have tried with an expression: 'day Of Week()' is equal to '1' , but i think i am missing something inside the '( )'.
Is there any other way i can test if 'today/now' is Monday so the email for Monday can be sent?
Thanks in advance 🙌
Hi @Anonymous
Please see below.
The above expression is as follows:
dayOfWeek(utcNow())
Here is my run result
The expression dayOfWeek will return an integer number that represents the day of the week for a date, where 0 is Sunday, 1 is Monday, .and so on, finally 6 Saturday
Thanks