Struct email::MimeMessage [] [src]

pub struct MimeMessage {
    pub headers: HeaderMap,
    pub body: String,
    pub message_type: Option<MimeMultipartType>,
    pub children: Vec<MimeMessage>,
    pub boundary: String,
}

Represents a MIME message [unstable]

Fields

The headers for this message

The content of this message

Keep in mind that this is the undecoded form, so may be quoted-printable or base64 encoded.

The MIME multipart message type of this message, or None if the message is not a multipart message.

The sub-messages of this message

The boundary used for MIME multipart messages

This will always be set, even if the message only has a single part

Methods

impl MimeMessage
[src]

[src]

[unstable]

[src]

[src]

[src]

[src]

Update the headers on this message based on the internal state.

When certain properties of the message are modified, the headers used to represent them are not automatically updated. Call this if these are changed.

[src]

Parse s into a MimeMessage.

Recurses down into each message, supporting an unlimited depth of messages.

Be warned that each sub-message that fails to be parsed will be thrown away. [unstable]

[src]

[src]

[src]

Decode the body of this message, as a series of bytes

[src]

Decode the body of this message, as a string.

This takes into account any charset as set on the Content-Type header, decoding the bytes with this character set.

Trait Implementations

impl Eq for MimeMessage
[src]

impl PartialEq for MimeMessage
[src]

[src]

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

[src]

This method tests for !=.

impl Debug for MimeMessage
[src]

[src]

Formats the value using the given formatter.

impl Clone for MimeMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more