# mailslurp.model.Email
# Load the model package
import 'package:mailslurp/api.dart';
# Properties
Name | Type | Description | Notes |
---|---|---|---|
analysis | EmailAnalysis | [optional] [default to null] | |
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] [default to []] |
bcc | List<String> | List of `BCC` recipients email was addressed to | [optional] [default to []] |
body | String | The body of the email message | [optional] [default to null] |
bodyMD5Hash | String | A hash signature of the email message | [optional] [default to null] |
cc | List<String> | List of `CC` recipients email was addressed to | [optional] [default to []] |
charset | String | Detected character set of the email body such as UTF-8 | [optional] [default to null] |
createdAt | DateTime | When was the email received by MailSlurp | [optional] [default to null] |
from | String | Who the email was sent from | [optional] [default to null] |
headers | Map<String, String> | [optional] [default to {}] | |
id | String | ID of the email | [optional] [default to null] |
inboxId | String | ID of the inbox that received the email | [optional] [default to null] |
isHTML | bool | Was HTML sent in the email body | [optional] [default to null] |
read | bool | Has the email been viewed ever | [optional] [default to null] |
replyTo | String | The replyTo field on the received email | [optional] [default to null] |
subject | String | The subject line of the email message | [optional] [default to null] |
to | List<String> | List of `To` recipients email was addressed to | [optional] [default to []] |
updatedAt | DateTime | When was the email last updated | [optional] [default to null] |
userId | String | ID of user that email belongs | [optional] [default to null] |
[Back to Model list] [Back to API list] [Back to README]