TemplateArgs

data class TemplateArgs(val htmlPart: Output<String>? = null, val subjectPart: Output<String>, val templateName: Output<String>? = null, val textPart: Output<String>? = null) : ConvertibleToJava<TemplateArgs>

The content of the email, composed of a subject line, an HTML part, and a text-only part

Constructors

Link copied to clipboard
constructor(htmlPart: Output<String>? = null, subjectPart: Output<String>, templateName: Output<String>? = null, textPart: Output<String>? = null)

Properties

Link copied to clipboard
val htmlPart: Output<String>? = null

The HTML body of the email.

Link copied to clipboard
val subjectPart: Output<String>

The subject line of the email.

Link copied to clipboard
val templateName: Output<String>? = null

The name of the template.

Link copied to clipboard
val textPart: Output<String>? = null

The email body that is visible to recipients whose email clients do not display HTML content.

Functions

Link copied to clipboard
open override fun toJava(): TemplateArgs