Struct rusoto_ses::Template[][src]

pub struct Template {
    pub html_part: Option<String>,
    pub subject_part: Option<String>,
    pub template_name: String,
    pub text_part: Option<String>,
}

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

Fields

The HTML body of the email.

The subject line of the email.

The name of the template. You will refer to this name when you send email using the SendTemplatedEmail or SendBulkTemplatedEmail operations.

The email body that will be visible to recipients whose email clients do not display HTML.

Trait Implementations

impl Default for Template
[src]

Returns the "default value" for a type. Read more

impl Debug for Template
[src]

Formats the value using the given formatter. Read more

impl Clone for Template
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for Template
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Template

impl Sync for Template