Skip to content

Get Template

ses_get_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

ses_get_template(TemplateName)

Arguments

TemplateName

[required] The name of the template to retrieve.

Value

A list with the following syntax:

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

Request syntax

svc$get_template(
  TemplateName = "string"
)