Exago .NET API Documentation
bccAddrs Field
Example 
WebReports.Api.Scheduler Namespace > SchedulerEmailInfo Class : bccAddrs Field
A list of e-mail addresses who will receive the schedule's output as blind carbon copy (BCC), as a list of strings.
Syntax
public System.Collections.Generic.List<string> bccAddrs
Example
Create a schedule that executed immediately, and e-mail it to several people.
ReportScheduler rs = api.ReportScheduler;
SchedulerEmailInfo sei = new SchedulerEmailInfo();

List<string> to = new List<string>();
to.Add("sales@mycompany.com");
to.Add("accounting@mycompany.com");
sei.toAddrs = to;

List<string> cc = new List<string>();
cc.Add("ceo@mycompany.com");
sei.ccAddrs = cc;

sei.subject = "Sales Data";
sei.body = "Attached, please find the quarterly sales report.";

rs.CreateImmediateSchedule("My Immediate Schedule", sei);
See Also

Reference

SchedulerEmailInfo Class
SchedulerEmailInfo Members