Create Template
ses_create_template | R Documentation |
Creates an email template¶
Description¶
Creates an email template. Email templates enable you to send personalized email to one or more destinations in a single operation. For more information, see the Amazon SES Developer Guide.
You can execute this operation no more than once per second.
Usage¶
ses_create_template(Template)
Arguments¶
Template |
[required] The content of the email, composed of a subject line and either an HTML part or a text-only part. |
Value¶
An empty list.
Request syntax¶
svc$create_template(
Template = list(
TemplateName = "string",
SubjectPart = "string",
TextPart = "string",
HtmlPart = "string"
)
)