I cannot seem to find a straight answer to the following.
I have a form with a question:
"Who would you like to send these responses to? "
The options are (this is simplified, there are actually dozens of email options, so conditionals wont do):
Bob
Sally
Joe
(multiple answers are allowed)
These 3 people have the following emails:
(The emails do not appear on the form, I want them hidden from the user)
I have compiled a json as follows, but do not understand how to take the choices the user picked, and put them into the TO field of an email.
[
{"bob": "bob@contoso.com",
"sally": "sally@contoso.com",
"joe": "joe@contoso.com"
}
]
So if Bob, and Sally were chosen, then "Bob@contoso.com;sally@contoso.com" should be the appended string which will then go into the TO: field of an email.
Doing this in code is trivial, but I can't seem to figure this out with Power Automate.
Thank you!
Jose