Struct mailslurp::models::email::Email[][src]

pub struct Email {
Show 23 fields pub analysis: Option<Box<EmailAnalysis>>, pub attachments: Option<Vec<String>>, pub bcc: Option<Vec<String>>, pub body: Option<String>, pub body_excerpt: Option<String>, pub body_md5_hash: Option<String>, pub cc: Option<Vec<String>>, pub charset: Option<String>, pub created_at: Option<String>, pub from: Option<String>, pub headers: Option<HashMap<String, String>>, pub id: Option<String>, pub inbox_id: Option<String>, pub is_html: Option<bool>, pub read: Option<bool>, pub recipients: Option<Box<EmailRecipients>>, pub reply_to: Option<String>, pub sender: Option<Box<Sender>>, pub subject: Option<String>, pub team_access: Option<bool>, pub to: Option<Vec<String>>, pub updated_at: Option<String>, pub user_id: Option<String>,
}
Expand description

Email : Email entity (also known as EmailDto). When an SMTP email message is received by MailSlurp it is parsed. The body and attachments are written to disk and the fields such as to, from, subject etc are stored in a database. The body contains the email content. If you want the original SMTP message see the getRawEmail endpoints. The attachments can be fetched using the AttachmentController

Fields

analysis: Option<Box<EmailAnalysis>>attachments: Option<Vec<String>>

List of IDs of attachments found in the email. Use these IDs with the Inbox and Email Controllers to download attachments and attachment meta data such as filesize, name, extension.

bcc: Option<Vec<String>>

List of BCC recipients email addresses that the email was addressed to. See recipients object for names.

body: Option<String>

The body of the email message as text parsed from the SMTP message body (does not include attachments). Fetch the raw content to access the SMTP message and use the attachments property to access attachments. The body is stored separately to the email entity so the body is not returned in paginated results only in full single email or wait requests.

body_excerpt: Option<String>

An excerpt of the body of the email message for quick preview .

body_md5_hash: Option<String>

A hash signature of the email message using MD5. Useful for comparing emails without fetching full body.

cc: Option<Vec<String>>

List of CC recipients email addresses that the email was addressed to. See recipients object for names.

charset: Option<String>

Detected character set of the email body such as UTF-8

created_at: Option<String>

When was the email received by MailSlurp

from: Option<String>

Who the email was sent from. An email address - see fromName for the sender name.

headers: Option<HashMap<String, String>>

Collection of SMTP headers attached to email

id: Option<String>

ID of the email entity

inbox_id: Option<String>

ID of the inbox that received the email

is_html: Option<bool>

Is the email body HTML

read: Option<bool>

Read flag. Has the email ever been viewed in the dashboard or fetched via the API with a hydrated body? If so the email is marked as read. Paginated results do not affect read status. Read status is different to email opened event as it depends on your own account accessing the email. Email opened is determined by tracking pixels sent to other uses if enable during sending. You can listened for both email read and email opened events using webhooks.

recipients: Option<Box<EmailRecipients>>reply_to: Option<String>

The replyTo field on the received email message

sender: Option<Box<Sender>>subject: Option<String>

The subject line of the email message as specified by SMTP subject header

team_access: Option<bool>

Can the email be accessed by organization team members

to: Option<Vec<String>>

List of To recipient email addresses that the email was addressed to. See recipients object for names.

updated_at: Option<String>

When was the email last updated

user_id: Option<String>

ID of user that email belongs to

Implementations

Email entity (also known as EmailDto). When an SMTP email message is received by MailSlurp it is parsed. The body and attachments are written to disk and the fields such as to, from, subject etc are stored in a database. The body contains the email content. If you want the original SMTP message see the getRawEmail endpoints. The attachments can be fetched using the AttachmentController

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

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

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.