AWSSESTemplate
Objective-C
@interface AWSSESTemplate
Swift
class AWSSESTemplate
The content of the email, composed of a subject line and either an HTML part or a text-only part.
Required parameters: [TemplateName]
-
The HTML body of the email.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable htmlPart;
Swift
var htmlPart: String? { get set }
-
The subject line of the email.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable subjectPart;
Swift
var subjectPart: String? { get set }
-
The name of the template. You use this name when you send email using the
SendTemplatedEmail
orSendBulkTemplatedEmail
operations.Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable templateName;
Swift
var templateName: String? { get set }
-
The email body that is visible to recipients whose email clients do not display HTML content.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable textPart;
Swift
var textPart: String? { get set }