get_email
Retrieve complete email details including body content, attachments, messageId, and conversationId. Use after listing or searching emails to read the full message.
Instructions
Get full details of a single email including its body content. Use this after list_emails or search_emails to read the complete message. Returns all summary fields plus recipients, body (plain text when strip_html is true, the default), attachments list, messageId, and conversationId. Set strip_html to false to also receive the raw HTML in the htmlBody field. Returns an error if the email ID does not exist. Set include_body to false for metadata only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| email_id | Yes | The numeric email ID to retrieve (e.g., from list_emails or search_emails) | |
| strip_html | No | Strip HTML tags from the body, returning plain text. Defaults to true if omitted. | |
| include_body | No | Include the email body content in the response. Defaults to true if omitted. |