> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Sent Email Content

> Retrieve a sent Brevo transactional email by message ID.

**Get Sent Email Content** retrieves the recipient, subject, HTML body, and
timestamp for a previously sent transactional email.

## Inputs

| Input                   | Type          | Required | Description                                                                               |
| ----------------------- | ------------- | -------- | ----------------------------------------------------------------------------------------- |
| **Third-party account** | Brevo account | Yes      | The account that sent the email.                                                          |
| **Message ID**          | String        | Yes      | A Brevo message ID from a send action or email logs. A Brevo email UUID is also accepted. |

## Outputs

| Output           | Type   | Description                  |
| ---------------- | ------ | ---------------------------- |
| **Recipient**    | String | The recipient email address. |
| **Subject**      | String | The sent subject line.       |
| **HTML Content** | String | The sent message body.       |
| **Date**         | Date   | When the email was sent.     |

<Note>
  When given a message ID rather than a UUID, WorkflowDog first looks up the
  matching email record and then retrieves its content.
</Note>
