Send email with a carbon copy (CC/BCC)

Hi

I have to send email with a carbon copy to the several people (managers).

Right now I use code:

var emailOptions = new SendEmailOptions {Subject = subject, Body = body, FromEmail = fromEmail, ToEmail = user.PrivateEmail};
Apis.Get<ISendEmail>().Send(emailOptions);

But it sends only for one recipient. Is it possible to send it to the several addresses?

Parents Reply Children
No Data