Struct mailstrom::prepared_email::PreparedEmail[][src]

pub struct PreparedEmail {
    pub to: Vec<String>,
    pub from: String,
    pub message_id: String,
    pub message: Vec<u8>,
}

An email, prepared for delivery.

Fields

Trait Implementations

impl Debug for PreparedEmail
[src]

Formats the value using the given formatter. Read more

impl Clone for PreparedEmail
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for PreparedEmail
[src]

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

impl<'a> SendableEmail<'a, &'a [u8]> for PreparedEmail
[src]

To

From

Message ID, used for logging

Message content

Auto Trait Implementations