AWSSESMessage
Objective-C
@interface AWSSESMessage
Swift
class AWSSESMessage
Represents the message to be sent, composed of a subject and a body.
Required parameters: [Subject, Body]
-
The message body.
Declaration
Objective-C
@property (nonatomic, strong) AWSSESBody *_Nullable body;
Swift
var body: AWSSESBody? { get set }
-
The subject of the message: A short summary of the content, which appears in the recipient’s inbox.
Declaration
Objective-C
@property (nonatomic, strong) AWSSESContent *_Nullable subject;
Swift
var subject: AWSSESContent? { get set }