I have a workflow where one step involves querying records from a collection where there are different users, each with an email address. I’d like to gather all the records for each user and send an email to each of them.
For example, in a table with 15 records, 10 belong to one user and 5 to another. How can I filter this and send those two emails?
I’ve seen that you can use a loop to send emails for each query, but I don’t see a way to collect the specific info I want to send in a single email.