public static interface Template.Builder extends CopyableBuilder<Template.Builder,Template>
| Modifier and Type | Method and Description |
|---|---|
Template.Builder |
htmlPart(String htmlPart)
The HTML body of the email.
|
Template.Builder |
subjectPart(String subjectPart)
The subject line of the email.
|
Template.Builder |
templateName(String templateName)
The name of the template.
|
Template.Builder |
textPart(String textPart)
The email body that will be visible to recipients whose email clients do not display HTML.
|
copyapply, buildTemplate.Builder templateName(String templateName)
The name of the template. You will refer to this name when you send email using the
SendTemplatedEmail or SendBulkTemplatedEmail operations.
templateName - The name of the template. You will refer to this name when you send email using the
SendTemplatedEmail or SendBulkTemplatedEmail operations.Template.Builder subjectPart(String subjectPart)
The subject line of the email.
subjectPart - The subject line of the email.Template.Builder textPart(String textPart)
The email body that will be visible to recipients whose email clients do not display HTML.
textPart - The email body that will be visible to recipients whose email clients do not display HTML.Template.Builder htmlPart(String htmlPart)
The HTML body of the email.
htmlPart - The HTML body of the email.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.