Struct rusoto_ses::Body [] [src]

pub struct Body {
    pub html: Option<Content>,
    pub text: Option<Content>,
}

Represents the body of the message. You can specify text, HTML, or both. If you use both, then the message should display correctly in the widest variety of email clients.

Fields

The content of the message, in HTML format. Use this for email clients that can process HTML. You can include clickable links, formatted text, and much more in an HTML message.

The content of the message, in text format. Use this for text-based email clients, or clients on high-latency networks (such as mobile devices).

Trait Implementations

impl Default for Body
[src]

[src]

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

impl Debug for Body
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for Body
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Body

impl Sync for Body