AWSPinpointTargetingCampaignEmailMessage
Objective-C
@interface AWSPinpointTargetingCampaignEmailMessage
Swift
class AWSPinpointTargetingCampaignEmailMessage
Specifies the content and “From” address for an email message that’s sent to recipients of a campaign.
-
The body of the email for recipients whose email clients don’t render HTML content.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable body;
Swift
var body: String? { get set }
-
The verified email address to send the email from. The default address is the FromAddress specified for the email channel for the application.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable fromAddress;
Swift
var fromAddress: String? { get set }
-
The body of the email, in HTML format, for recipients whose email clients render HTML content.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable htmlBody;
Swift
var htmlBody: String? { get set }
-
The subject line, or title, of the email.
Declaration
Objective-C
@property (nonatomic, strong) NSString *_Nullable title;
Swift
var title: String? { get set }