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
Thanks that does work with the BCC,
I want to be able to fill in the subject and body in a text and send the specific contents to that group as before.
My 2 fields are
SubjectALL (Text Input)
BodyALL (Text Input)
Where would these 2 fields be needed to allow the specific message to be sent to the group.
Thanks
hey @Markswan20
can you please try this:
Office365Outlook.SendEmail(
"yourEmail@example.com", // A placeholder or your email in the 'To' field
"Feedback", // Subject
"
Feedback received from
", // Body
{
Bcc: Concat(
CLUsers,
Email & ";"
)
}
);
Notify(
"Feedback Submitted Thank You",
NotificationType.Success,
5000
);
Let me know if my answer helped solving your issue.
If it did please accept as solution and give it a thumbs up so we can help others in the community.
Greetings
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.