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