Morning all
I am building an app that allows me to communicate with volunteers. In the app i have an email screen with the code below attached to a button on success. I would like to know, is it possible to use a check box to populate the email address and first name into the email body? Therefore, allowing me to email those depending on what stage they are at of volunteering.
I have three checkboxes. Onchecked, it collects the first name and email address from a SharePoint list.
1. Email all
2. Volunteer
3. Checks complete
The current code for sending email. I am unsure how I get it to look at all three checkboxes to see which one is checked then send that email to each person. I would still like to keep the (Send To box) for manual input of emails, if that is possible?
Set(_emailRecipientString, Concat(MyPeople, Mail & ";"));
Office365Outlook.SendEmailV2(_emailRecipientString, TextEmailSubject2_1.Text, RTEBody.HtmlText, {Attachments:RenameColumns(AttachmentControl.Attachments,Value,ContentBytes), Importance:"Normal"});
Reset(TextEmailSubject2_1);
Reset(RTEBody);
Reset(AttachmentControl);
Clear(MyPeople)
I am keen to learn and have spent a fair bit of time trying to understand this, but i am struggling.
Thank you for taking the time to look at my issue. I struggle to tag people and mark their answers as answers, so please forgive me for that. It is important to say thank you, so I have requested someone to look at this.
Any help would be amazing.