save_draft
Save an unsent draft email in Fastmail, preserving reply-threading headers when provided. Use to prepare a message without immediate delivery.
Instructions
Save an unsent draft email in Fastmail, including reply-thread headers when provided. Use when the user says "save a draft", "draft a reply", or wants a message prepared without sending it yet. Do not use for immediate delivery; use send_email. Do not use for a minimal placeholder draft with only partial fields; use create_draft.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | Recipient addresses as [{email, name?}] objects | |
| cc | No | CC addresses (optional) | |
| bcc | No | BCC addresses (optional) | |
| from | No | Sender email address (optional, defaults to account primary email) | |
| subject | Yes | Email subject | |
| textBody | No | Plain text body (optional) | |
| htmlBody | No | HTML body (optional) | |
| inReplyTo | No | Message-IDs to reply to (optional, for threading) | |
| references | No | Message-IDs for References header (optional, for threading) |