Struct mandrill_sender::email::Email [] [src]

pub struct Email {
    pub html: Option<String>,
    pub text: Option<String>,
    pub subject: Option<String>,
    pub from_email: Option<String>,
    pub from_name: Option<String>,
    pub to: Option<Vec<Recipient>>,
    pub important: bool,
    pub bcc_address: Option<String>,
    pub tags: Option<Vec<String>>,
    pub global_merge_vars: Option<Vec<TemplateVar>>,
    pub google_analytics_domains: Option<Vec<String>>,
    pub google_analytics_campaign: Option<String>,
    pub attachments: Option<Vec<Attachment>>,
}

Fields

Methods

impl Email
[src]

Trait Implementations

impl Default for Email
[src]

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

impl Decodable for Email
[src]

Deserialize a value using a Decoder.

impl Encodable for Email
[src]

Serialize a value using an Encoder.

impl Clone for Email
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more