---
title: "Retrieve an order email"
method: GET
path: "/shop/orders/{orderId}/emails/{emailId}"
tags: ["Orders"]
---

# Retrieve an order email

`GET /shop/orders/{orderId}/emails/{emailId}`

Retrieve the full rendered email message — including its HTML body —
that was sent for an order. To get just the summary metadata for every
email on the order, use [List the emails sent for an order](#operation/listOrderEmails)
instead.

## Response `200`

The email message was successfully retrieved.

- object
  - `data` OrderEmailMessage, required — A rendered email message — either retrieved from history or generated as a preview prior to sending.
    - `from` string, nullable — The "from" address of the email message.
    - `to` string[] — The recipients of the email message.
    - `cc` string[], nullable — The CC recipients of the email message.
    - `bcc` string[], nullable — The BCC recipients of the email message.
    - `subject` string, required — The subject line of the email message.
    - `email_type` string, required — The class name of the underlying mailable that produced this email — for example `BookingConfirmation`.
    - `html` string, required — The fully rendered HTML body of the email message.

## Other responses

- `404` — The resource couldn't be found

---

[API](https://skmtc.dev/try/apis/trybe-api.md) · [All operations](https://skmtc.dev/try/apis/trybe-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/try/trybe-api/revisions/f37f92702da5/schema)
