Objective: I am using the email template:

- The "To" field of the email has to always go to a specific group email account; and
- I need to include a cc: as well that functions just like the current "To" Field functions in the template, and
- Lastly, which has nothing to do with the code, I made the subject a dropdown, but I need to have a function that allows for fill-in as well. My thought is that I'd have a text box that would be visible if the user selected Other in the subject line.
How do I modify the current email template code that is applied to the send icon's OnSelect Property to achieve objectives 1 and 2. The default code is shown below. For Objective 3, is it a matter of using a Text Box with the visible property adjusted?
/*Create semicolon separated list of people to email, send the email, reset subject & message fields*/
Set(_emailRecipientString, Concat(MyPeople, Mail & ";"));
Office365Outlook.SendEmailV2(_emailRecipientString, TextEmailSubject2.SelectedText.Value, RTEBody.HtmlText, {Attachments: RenameColumns(Attach.Attachments, "Value", "ContentBytes"),Importance:"Normal"});
Reset(TextEmailSubject2);
Reset(RTEBody);
Clear(MyPeople); Navigate(SuccessEmailAlaCarte, ScreenTransition.Fade)