Hello,
I have a Form with a multiple choice field. This field displays 10 email addresses.
When the Form executes, the user is supposed to select one or more email addresses. At the end of the Form, I'd like to send an email to each email address selected by the user.
Can someone please help me understand how to accomplish this?
Thank you,
LanceB
Thank you very much, Rubin.
I will give that a try.
LanceB
hi @LanceB
if i am understanding you correct, give the following a try.
your record will look something like this ["a@.b.com", "b@c.com", "c@d.com"]
you wish to send an email to all of them a,b and c.
consider the email addresses is saved with a delimiter, in this case ","
to simulate i will add (add a variable) it to a variable varEmails as an array and initialise it with ["a@.b.com", "b@c.com", "c@d.com"]
Then add a control loop apply to each
in the control loop add send email
set to: CurrentItem
Subject: as you wish
Body: as you wish
it will look something like this
The result
Hope it helps,
R
Michael E. Gernaey
497
Super User 2025 Season 1
David_MA
436
Super User 2025 Season 1
Riyaz_riz11
244
Super User 2025 Season 1