# mailslurp.Model.Email
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.
# Properties
Name | Type | Description | Notes |
---|---|---|---|
Analysis | EmailAnalysis | [optional] | |
Attachments | List<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. | [optional] |
Bcc | List<string> | List of `BCC` recipients email was addressed to | [optional] |
Body | string | The body of the email message | [optional] |
BodyMD5Hash | string | A hash signature of the email message | [optional] |
Cc | List<string> | List of `CC` recipients email was addressed to | [optional] |
Charset | string | Detected character set of the email body such as UTF-8 | [optional] |
CreatedAt | DateTime | When was the email received by MailSlurp | [optional] |
From | string | Who the email was sent from | [optional] |
Headers | Dictionary<string, string> | [optional] | |
Id | Guid | ID of the email | [optional] |
InboxId | Guid | ID of the inbox that received the email | [optional] |
IsHTML | bool | Was HTML sent in the email body | [optional] |
Read | bool | Has the email been viewed ever | [optional] |
ReplyTo | string | The replyTo field on the received email | [optional] |
Subject | string | The subject line of the email message | [optional] |
To | List<string> | List of `To` recipients email was addressed to | [optional] |
UpdatedAt | DateTime | When was the email last updated | [optional] |
UserId | Guid | ID of user that email belongs | [optional] |
[Back to Model list] [Back to API list] [Back to README]