IPWorks OpenPGP 2020 iOS Edition

Questions / Feedback?

sensitivity (property)

Sensitivity of the mail message (optional).

Syntax

@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)
public var sensitivity: PsmtpSensitivities {
  get {...}
set {...} }
public enum PsmtpSensitivities : Int32 { case esUnspecified = 0 case esPersonal = 1 case esPrivate = 2 case esCompanyConfidential = 3 }

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).

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks OpenPGP 2020 iOS Edition - Version 20.0 [Build 8249]