I have a form which accepts multiple answers for a question.I have to send email to different persons based on the response received.
For example if user selects only finanace i have send email to xyz@abc.com
if user selects both finance and hr then i have to send emails to xyz@abc.com and def@abc.com respectively.
we can send individual emails for xyz and abc.
First i am collecting response using get repose details. When an user selects multiple answers, response is comes as string. So i have used compose to fetch the required output and used Initialise variable with create array and passed compose output to create array.
Then i have used Apply to each with array output and switch inside to send emails to difference peoples based on response received.
When i select both responses, current value is coming as ["Finance","HR"] and it is going to default value in the switch
Here i want to iterate loop for finance and hr so that emails can be sent individually.
Can some one please help me what is the issue here ?

