MailSlurpAPI.Model.EmailPreview (mailslurp v15.17.22)

Preview of an email message. For full message (including body and attachments) call the `getEmail` or other email endpoints with the provided email ID.

Summary

Types

@type t() :: %MailSlurpAPI.Model.EmailPreview{
  attachments: [String.t()] | nil,
  bcc: [String.t()] | nil,
  cc: [String.t()] | nil,
  createdAt: DateTime.t(),
  domainId: String.t() | nil,
  from: String.t() | nil,
  id: String.t(),
  read: boolean(),
  subject: String.t() | nil,
  to: [String.t()] | nil
}