IPWorks S/MIME 2020 iOS Edition

Questions / Feedback?

importance (property)

Importance of the mail message (optional).

Syntax

@property (nonatomic,readwrite,assign,getter=importance,setter=setImportance:) int importance;
- (int)importance;
- (void)setImportance:(int)newImportance;

/* Possible Values */
MI_UNSPECIFIED(0),
MI_HIGH(1),
MI_NORMAL(2),
MI_LOW(3)
public var importance: SsmtpImportances {
  get {...}
set {...} }
public enum SsmtpImportances : Int32 { case miUnspecified = 0 case miHigh = 1 case miNormal = 2 case miLow = 3 }

Default Value

0

Remarks

This property indicates the importance of the mail message (optional). When set, an Importance header will be added to the message.

Importance is an indication to the recipient(s) about how important the message is. The possible values are Unspecified (0), High (1), Normal (2), and Low (3).

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