MessageCc Property
A comma separated list of recipients for carbon copies for a message.
Syntax
ANSI (Cross Platform) char* GetMessageCc();
int SetMessageCc(const char* lpszMessageCc); Unicode (Windows) LPWSTR GetMessageCc();
INT SetMessageCc(LPCWSTR lpszMessageCc);
@property (nonatomic,readwrite,assign,getter=messageCc,setter=setMessageCc:) NSString* messageCc; - (NSString*)messageCc; - (void)setMessageCc:(NSString*)newMessageCc;
#define PID_GMAIL_MESSAGECC 15 CLOUDMAIL_EXTERNAL void* CLOUDMAIL_CALL CloudMail_GMail_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal); CLOUDMAIL_EXTERNAL int CLOUDMAIL_CALL CloudMail_GMail_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);
Default Value
""
Remarks
This property contains a comma separated list of destinations for carbon copies of a mail message. These recipients are added to a message created with CreateDraft or messages sent with SendMail.
Example (Add a CC Recipient)
office365.MessageCc =
"bbobbertson@bobmail.com"
;
office365.SendMail();
Example (Add a CC Recipient with a Name and Address)
office365.MessageCc =
"Brandrew Bobbertson < bbobbertson@bobmail.com >"
;
office365.SendMail();
This property is not available at design time.
Data Type
String