AWSSESMessageDsn
Objective-C
@interface AWSSESMessageDsn
Swift
class AWSSESMessageDsn
Message-related information to include in the Delivery Status Notification (DSN) when an email that Amazon SES receives on your behalf bounces.
For information about receiving email through Amazon SES, see the Amazon SES Developer Guide.
Required parameters: [ReportingMta]
-
When the message was received by the reporting mail transfer agent (MTA), in RFC 822 date-time format.
Declaration
Objective-C
@property (nonatomic, strong) NSDate *_Nullable arrivalDate;
Swift
var arrivalDate: Date? { get set }
-
Additional X-headers to include in the DSN.
Declaration
Objective-C
@property (nonatomic, strong) NSArray<AWSSESExtensionField *> *_Nullable extensionFields;
Swift
var extensionFields: [AWSSESExtensionField]? { get set }
-
The reporting MTA that attempted to deliver the message, formatted as specified in RFC 3464 (
mta-name-type; mta-name
). The default value isdns; inbound-smtp.[region].amazonaws.com
.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable reportingMta;
Swift
var reportingMta: String? { get set }