MailSlurpAPI.Model.Email (mailslurp v11.7.202)
Email model (also referred to as EmailDto). Represents an email that was received by an inbox. If you want the original SMTP message see the `getRawEmail` endpoint.
Link to this section Summary
Link to this section Types
Specs
t() :: %MailSlurpAPI.Model.Email{
analysis: EmailAnalysis | nil,
attachments: [String.t()] | nil,
bcc: [String.t()] | nil,
body: String.t() | nil,
bodyMD5Hash: String.t() | nil,
cc: [String.t()] | nil,
charset: String.t() | nil,
createdAt: DateTime.t() | nil,
from: String.t() | nil,
headers: %{optional(String.t()) => String.t()} | nil,
id: String.t() | nil,
inboxId: String.t() | nil,
isHTML: boolean() | nil,
read: boolean() | nil,
replyTo: String.t() | nil,
subject: String.t() | nil,
teamAccess: boolean() | nil,
to: [String.t()] | nil,
updatedAt: DateTime.t() | nil,
userId: String.t() | nil
}