# Email ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **_id** | **UUID** | ID of the email entity | **userId** | **UUID** | ID of user that email belongs to | **inboxId** | **UUID** | ID of the inbox that received the email | **domainId** | **UUID** | ID of the domain that received the email | [optional] **to** | **[String]** | List of `To` recipient email addresses that the email was addressed to. See recipients object for names. | **from** | **String** | Who the email was sent from. An email address - see fromName for the sender name. | [optional] **sender** | [**Sender**](Sender) | | [optional] **recipients** | [**EmailRecipients**](EmailRecipients) | | [optional] **replyTo** | **String** | The `replyTo` field on the received email message | [optional] **cc** | **[String]** | List of `CC` recipients email addresses that the email was addressed to. See recipients object for names. | [optional] **bcc** | **[String]** | List of `BCC` recipients email addresses that the email was addressed to. See recipients object for names. | [optional] **headers** | **[String: String]** | Collection of SMTP headers attached to email | [optional] **headersMap** | [String: [String]] | Multi-value map of SMTP headers attached to email | [optional] **attachments** | **[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] **subject** | **String** | The subject line of the email message as specified by SMTP subject header | [optional] **body** | **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. | [optional] **bodyExcerpt** | **String** | An excerpt of the body of the email message for quick preview. Takes HTML content part if exists falls back to TEXT content part if not | [optional] **textExcerpt** | **String** | An excerpt of the body of the email message for quick preview. Takes TEXT content part if exists | [optional] **bodyMD5Hash** | **String** | A hash signature of the email message using MD5. Useful for comparing emails without fetching full body. | [optional] **isHTML** | **Bool** | Is the email body content type HTML? | [optional] **charset** | **String** | Detected character set of the email body such as UTF-8 | [optional] **analysis** | [**EmailAnalysis**](EmailAnalysis) | | [optional] **createdAt** | **Date** | When was the email received by MailSlurp | **updatedAt** | **Date** | When was the email last updated | **read** | **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. | **teamAccess** | **Bool** | Can the email be accessed by organization team members | **isXAmpHtml** | **Bool** | Is the email body content type x-amp-html Amp4Email? | [optional] **bodyPartContentTypes** | **[String]** | A list of detected multipart mime message body part content types such as text/plain and text/html. Can be used with email bodyPart endpoints to fetch individual body parts. | [optional] **html** | **Bool** | | [optional] **xampHtml** | **Bool** | | [optional] [[Back to Model list]](../README#documentation-for-models) [[Back to API list]](../README#documentation-for-api-endpoints) [[Back to README]](../README)