create_reply_draft
Create a reply draft for an email by pre-filling recipient, subject, and quoted body, returning a draft ID for review before sending.
Instructions
Create a reply draft for a specific email, pre-filling To, Subject, and quoted body from the original message. Use when you have an emailId and want to stage the reply for review before sending. Prefer create_thread_reply_draft when you only have a threadId. Prefer reply_to_email to send immediately. Returns a draftId.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| emailId | Yes | Original email id. | |
| body | Yes | Reply body to prepend. | |
| replyAll | No | Reply to all original recipients. | |
| isHtml | No | Store body as HTML. | |
| cc | No | Additional CC recipients, comma-separated. | |
| bcc | No | Additional BCC recipients, comma-separated. | |
| notes | No | Optional local note for the draft. | |
| syncToRemote | No | Whether to sync the draft to the Proton Drafts mailbox when IMAP is available. | |
| attachments | No | Attachments with base64 encoded content. |