I’d like to ask for some assistance because I can’t think of a way to do it myself. I make a call to API that returns me a JSON string that looks something like this
The goal is to group this data by name convert it to HTML table and send that table to each person. In this exact example there would be three emails sent.
If I were to write every possible user/email in Switch node I know how to do it. The problem is this user/email list can change over time and I don’t want to come back to edit Workflow each time new user is added to the system. Is there a way to configure Switch node so that it would distribute data dynamically? If there is can someone please show me an example.
Basically there can be X amount if users. I want to send each user one email that contains tasks assigned to that person. So in my example above there would be 3 emails send. Person 1 would receive table with two rows. Person 2 would receive table with one row. And person 3 would receive table with also one row.