mShowBCC
Shows or hides the BCC field (blind carbon copy) in the Sage CRM user interface.
Values
This property can take one of the following values:
- true. Shows the BCC field.
- false. Hides the BCC field.
Examples
MailObj = CRM.GetBlock("messageblock");
MailObj.mSubject = 'New Message';
MailObj.mBody = "This is where you put the content of the message.";
MailObj.mShowBCC = true;
CRM.AddContent(mailObj.execute());
Response.Write(CRM.GetPage());
Shows the BCC field in the Sage CRM user interface.