Should I/How can I use "if/then" "go to" for my project?

Hi @ninjanow
A good question, getting the logic right can be tricky.
Can I ask, is the masterclass running on a specific set of dates, e.g. 3rd to 5th April?

If so, your If/Else statements need to be based on those dates.
For example, if your masterclass started on the 3rd April, your first If/Else condition would need to be:

Current year (select Your timezone) Is 2023
And
Current Month (select Your timezone) is before April

OR

Current year (select Your timezone) Is 2023
And
Current Month (select Your timezone) Is April
And
Current Day of the Month (select Your timezone) is on or before 3

Yes path:
Send Day 1 email

Wait condition until following day

No path
Current year (select Your timezone) Is 2023
And
Current Month (select Your timezone) Is April
And
Current Day of the Month (select Your timezone) is 4

Yes path:
Send day 2 email

etc.

So, basically, you are building in the conditions to check whether the date they register is on or before day 1, or if not, which day of the Masterclass they register, and then send them the relevant emails.

Now, if your masterclass is not running on defined dates, then it might need to be done differently, so let me know how you are running it and I can see whether I can offer a solution.

I hope that helps.

1 Like