Learn R Programming

paws.customer.engagement (version 0.1.12)

ses_get_template: 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

ses_get_template(TemplateName)

Value

A list with the following syntax:

list(
  Template = list(
    TemplateName = "string",
    SubjectPart = "string",
    TextPart = "string",
    HtmlPart = "string"
  )
)

Arguments

TemplateName

[required] The name of the template you want to retrieve.

Request syntax

svc$get_template(
  TemplateName = "string"
)