Hmm, when you mention that a "Weekly Digest" cannot function within conditional logic, can you explain a bit more about the conditional logic you are trying to apply? Once I understand why you need 150 automations I might be able to suggest an alternative
I currently send a data notification to each of our teachers solely with their data which comes from views. I have to have a view for each teacher so they only see their data. If I want to automate that, I create a trigger based on the day and time I want the notification to go out, and then I have to pull a digest of records for that teacher (based on views) and then send the digest as an email. The conditional logic stops after the first run through regardless of the number of conditional groups afterwards.
I currently send a data notification to each of our teachers solely with their data which comes from views. I have to have a view for each teacher so they only see their data. If I want to automate that, I create a trigger based on the day and time I want the notification to go out, and then I have to pull a digest of records for that teacher (based on views) and then send the digest as an email. The conditional logic stops after the first run through regardless of the number of conditional groups afterwards.
Ah I see, thanks
Hmm, assuming you have a table that contains all your teachers, potentially you could:
1. Create an automation that triggers at the time you want the digest to go out
2. Has a "Find Record" action that will grab the list of all your teachers from the table
3. Add a Repeating Group action
- In the Repeating Group action, have a Find Record action that will look for the relevant records for each teacher (i.e. the filters that you're currently using per view)
- In this Repeating Group action, have the "Send email" action
Would this work do you think?