Sensitivity Property

Sensitivity of the mail message (optional).

Syntax

ANSI (Cross Platform)
int GetSensitivity();
int SetSensitivity(int iSensitivity); Unicode (Windows) INT GetSensitivity();
INT SetSensitivity(INT iSensitivity);

Possible Values

ES_UNSPECIFIED(0), 
ES_PERSONAL(1),
ES_PRIVATE(2),
ES_COMPANY_CONFIDENTIAL(3)
@property (nonatomic,readwrite,assign,getter=sensitivity,setter=setSensitivity:) int sensitivity;
- (int)sensitivity;
- (void)setSensitivity:(int)newSensitivity;

Possible Values

ES_UNSPECIFIED(0), 
ES_PERSONAL(1),
ES_PRIVATE(2),
ES_COMPANY_CONFIDENTIAL(3)
#define PID_HTMLMAILER_SENSITIVITY 45

IPWORKS_EXTERNAL void* IPWORKS_CALL IPWorks_HTMLMailer_Get(void *lpObj, int propid, int arridx, int *lpcbVal, int64 *lpllVal);
IPWORKS_EXTERNAL int IPWORKS_CALL IPWorks_HTMLMailer_Set(void *lpObj, int propid, int arridx, const void *val, int cbVal);

Default Value

0

Remarks

This property is an indication of how sensitive it is to disclose the message to people other than the recipients of the message. When set, a Sensitivity header will added to the message. Possible values are: esPersonal (1), esPrivate (2), and esCompanyConfidential (3).

Data Type

Integer

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks 2020 C++ Edition - Version 20.0 [Build 8307]