AWSSESTemplate

Objective-C

@interface AWSSESTemplate

Swift

class AWSSESTemplate

The content of the email, composed of a subject line, an HTML part, and 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 will refer to this name when you send email using the SendTemplatedEmail or SendBulkTemplatedEmail operations.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable templateName;

    Swift

    var templateName: String? { get set }
  • The email body that will be visible to recipients whose email clients do not display HTML.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable textPart;

    Swift

    var textPart: String? { get set }