Read a draft
get_draftRetrieve a draft by ID to preview its decoded headers, text body, and attachment metadata before sending or editing. Review current draft content before update_draft replaces the whole draft.
Instructions
Fetches one draft with its message decoded like get_message: headers (to, cc, subject, ...), text body, HTML only on request, attachment metadata. Use it to show the user what send_draft would send, or to read the current content before update_draft (updates REPLACE the whole draft).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| draft_id | Yes | The draft id from list_drafts or create_draft output. | |
| include_html | No | Return the decoded HTML body even when a text body exists (default false). | |
| max_body_chars | No | Truncate each decoded body at this many characters (default 50000; a truncation flag is set when cut). |