I previously posted about this but was never able to execute it, so hoping someone will be able to kindly help me againâŚ
Each day I have a RG that updates with a list of people who an email should be sent to. I press the button to started the workflow that creates an email for each person in that list.
What I would like to do is now automate that process so everyday emails are created for the new people in that listâŚwithout me needing to press the button.
The first workflow that is triggered is the following:
Oh the iteration bit is it starting from 1 so workflow b works through the list of items.
Second day today of the loop and ended up with the same âbrideâ as yesterday. I canât seem to define the list for a new day. Iâm always just running workflow b for the list of people on the day I start the whole process. Canât seem to figure this one out
There are no RGâs in backend workflows⌠so I think youâre misunderstanding something basic hereâŚ
When you trigger the second workflow (the one that loops through the list of Brides), you must be passing a list of Brides into a parameter (presumably).
Based on the problem youâre having, itâs almost certain that your just passing that same list into the workflow every day - rather than defining a new list each day as you should be.
Maybe share a screenshot of the rest of your backend workflow (the action that schedules workflow B)âŚ
Each day (i.e. each repetition of workflow A) you need to do a fresh search for the events for that day (meaning events scheduled for 9 days time) just as you are in your RGâŚ
So when you schedule workflow B (from within workflow A) the list of Events you pass into the event parameter should be a fresh search each day - that way, every day when workflow A triggers workflow B, the list workflow B is running on is different, and relevant to the current day.
(Otherwise youâre just perpetually re-using the initial search from the repeating group, which will remain on the same day foreverâŚ)