reply_to_email
Instantly reply to an email with proper threading via In-Reply-To and References headers. Use when you have the email ID and want to send the reply without drafting.
Instructions
Immediately send a reply to an existing email, threading it correctly via In-Reply-To and References headers. Use when you have an emailId and want to send the reply right away. Prefer create_reply_draft to save the reply for review first, or create_thread_reply_draft when replying from a threadId. Use reply_all_email to reply to all original recipients. Requires PROTONMAIL_ALLOW_SEND.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| emailId | Yes | Original email id. | |
| body | Yes | Reply body to prepend (plain text). Required unless markdownBody is provided. | |
| markdownBody | No | Reply body in Markdown. Rendered to HTML with body as plain-text fallback; takes precedence over body+isHtml. | |
| replyAll | No | Reply to all original recipients. | |
| isHtml | No | Send body as HTML (ignored when markdownBody is provided). | |
| cc | No | Additional CC recipients, comma-separated. | |
| bcc | No | Additional BCC recipients, comma-separated. | |
| fromName | No | Optional display name for the From header. | |
| sanitizeHtml | No | Strip scripts and remote image beacons from HTML before delivery. Defaults to true. | |
| attachments | No | Attachments with base64 encoded content. | |
| confirmed | No | Set to true to confirm this irreversible send when PROTONMAIL_CONFIRM_DESTRUCTIVE is enabled. | |
| dryRun | No | Preview recipient set and threading headers without sending. | |
| includeQuote | No | Append the quoted original message to the reply body. |