Hi all,
Relatively easy one i think, i'm using a button to pull all the users emails associated with a SP List and sending a blanket email to all. I don't want everyone to see who it goes to so wanted to utilise the BCC function. This is the working code for the none BCC, can someone point me where i need to add the code to allow bcc please.
Office365Outlook.SendEmail(
Concat(
CLUsers,
Email & "; "
),
"Feedback",
"
Feedback received from
",
{}
);
// {true} above was change
Notify(
"Feedback Submitted Thank You",
NotificationType.Success,
5000
);
Thanks