Hello everyone,
I would like to send an email to people who are listed in a gallery. Each value in the Gallery has a checkbox. For this I used the following formula:
ForAll(Filter(Gallery4.AllItems;Checkbox5.Value=true);Office365Outlook.SendEmailV2(Gallery4.Selected.Value;TextInput6.Text;RichTextEditor1.HtmlText));;Reset(TextInput6);;Reset(RichTextEditor1);;UpdateContext({ResetCheckbox:true});;UpdateContext({ResetCheckbox:false})
If I select a person, that works great too. However, if I select multiple people, then it always takes the person who was selected last. But I would like to send the email to all selected people. How do I get that?
Thank you in advance!