You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 24, 2021. It is now read-only.
Unable to send mail to multiple users using pnp/sp/sputilities
I can CC to multiple users but unable to keep multiple users in to.
Below is the my code snippet.
`const emailProps: IEmailProperties = {
To: this._emailTo,
CC: template.emailCC,//this._emailCc,
BCC: this._emailBcc,
Subject: template.subject,
Body: template.body,
AdditionalHeaders: {
"content-type": "text/html"
}
};
sp.utility.sendEmail(emailProps).then((response) => {
console.log("Email Sent to! " + this._emailTo);
}).catch((i) => {
The text was updated successfully, but these errors were encountered: