Hello,
I need to send an email to 2 engineers plus the user who filled out the new request form. The notification email isn't going through. I've tried I've tried every quote, semi-colon, etc. variation I can think of. Can you please help me spot what I am doing wrong? Thanks!
Office365Outlook.SendEmailV2("jane.doe@company.com; john.doe@company.com" && varUser.Email,
"New Tool Support Request Notification",
Substitute(
Substitute(
Substitute(
Substitute(
Substitute(NotificationEmailHTML.HtmlText,
"<recordID>", Text(frmNewRequest.LastSubmit.ID)),
"<fullName>", frmNewRequest.LastSubmit.'Created By'.DisplayName),
"<requestTitle>", frmNewRequest.LastSubmit.'Request Summary Title'),
"<description>", frmNewRequest.LastSubmit.Description),
"<neededBy>", Text(frmNewRequest.LastSubmit.'Needed By',ShortDate)
)
);
Set(HighlightRecord, frmNewRequest.LastSubmit);
ResetForm(frmNewRequest);
Navigate(HomeScreen, Transition.None);
Set(varPlaySpinner,false)