Retrieve Received Email
Retrieve a single received email.
GET
Path Parameters
string
required
The ID for the received email.
Query Parameters
'data_uri' | 'cid'
Controls how inline images are returned inside
html. The response echoes
the form actually served as html_format on the body.By default (or when set to data_uri), inline images appear in html as base64 data: URIs. Set html_format=cid to keep the original <img src="cid:..." /> references instead. Each cid: matches the content_id of an attachment, so you can correlate inline images with entries in the attachments array and fetch them via the attachment download endpoint.Emails whose inlined HTML would exceed 100 MB, typically long reply chains that quote the same inline image hundreds of times, are always stored and returned with cid: references. For those emails the response reports html_format: "cid" regardless of the requested format, so check the html_format field on the body rather than assuming the format you asked for.Response Fields
'data_uri' | 'cid'
How inline images are referenced in
html. Usually matches the requested
format, but is cid when the email is too large to inline (see the query
parameter above).array
The recipient addresses the email was forwarded for, taken from the
for
clause of the message’s Received headers.object | null
The SPF, DKIM, and DMARC results computed when the email was received. These
come from the receiving mail server, not from the message headers, so the
sender cannot forge them.
null for emails received before this field was
introduced.object | null
Raw email content download information. Contains a signed URL to download the original email file including all attachments.