MailSlurpClient::SentEmailDto
Properties
Name | Type | Description | Notes |
id | String | ID of sent email | |
user_id | String | User ID | |
inbox_id | String | Inbox ID email was sent from | |
to | Array | Recipients email was sent to | [optional] |
from | String | | [optional] |
reply_to | String | | [optional] |
cc | Array | | [optional] |
bcc | Array | | [optional] |
attachments | Array | Array of IDs of attachments that were sent with this email | [optional] |
subject | String | | [optional] |
body_md5_hash | String | MD5 Hash | [optional] |
body | String | | [optional] |
charset | String | | [optional] |
is_html | Boolean | | [optional] |
sent_at | DateTime | | |
pixel_ids | Array | | [optional] |
message_id | String | | [optional] |
virtual_send | Boolean | | [optional] |
html | Boolean | | [optional] |
Code Sample
require 'MailSlurpClient'
instance = MailSlurpClient::SentEmailDto.new(id: null,
user_id: null,
inbox_id: null,
to: null,
from: null,
reply_to: null,
cc: null,
bcc: null,
attachments: null,
subject: null,
body_md5_hash: null,
body: null,
charset: null,
is_html: null,
sent_at: null,
pixel_ids: null,
message_id: null,
virtual_send: null,
html: null)