# mailslurp.Model.EmailPreview
Preview of an email message. For full message (including body and attachments) call the getEmail
or other email endpoints with the provided email ID.
# Properties
Name | Type | Description | Notes |
---|---|---|---|
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] |
Cc | List<string> | List of `CC` recipients email was addressed to | [optional] |
CreatedAt | DateTime | When was the email received by MailSlurp | [optional] |
From | string | Who the email was sent from | [optional] |
Id | Guid | ID of the email | [optional] |
Read | bool | Has the email been viewed ever | [optional] |
Subject | string | The subject line of the email message | [optional] |
To | List<string> | List of `To` recipients email was addressed to | [optional] |
[Back to Model list] [Back to API list] [Back to README]