Skip to content

Get Email Template

sesv2_get_email_template R Documentation

Displays the template object (which includes the subject line, HTML part and text part) for the template you specify

Description

Displays the template object (which includes the subject line, HTML part and text part) for the template you specify.

You can execute this operation no more than once per second.

Usage

sesv2_get_email_template(TemplateName)

Arguments

TemplateName

[required] The name of the template.

Value

A list with the following syntax:

list(
  TemplateName = "string",
  TemplateContent = list(
    Subject = "string",
    Text = "string",
    Html = "string"
  )
)

Request syntax

svc$get_email_template(
  TemplateName = "string"
)