IPWorks OpenPGP 2020 iOS Edition

Questions / Feedback?

priority (property)

Priority of the mail message (optional).

Syntax

@property (nonatomic,readwrite,assign,getter=priority,setter=setPriority:) int priority;
- (int)priority;
- (void)setPriority:(int)newPriority;

/* Possible Values */
EP_UNSPECIFIED(0),
EP_NORMAL(1),
EP_URGENT(2),
EP_NON_URGENT(3)
public var priority: PsmtpPriorities {
  get {...}
set {...} }
public enum PsmtpPriorities : Int32 { case epUnspecified = 0 case epNormal = 1 case epUrgent = 2 case epNonUrgent = 3 }

Default Value

0

Remarks

When this property is set, a Priority header will be added to the message. Priority is an indication about the delivery priority of the message. The possible values are epNormal, epUrgent, and epNonUrgent.

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