forward_email
Forward an existing email to new recipients immediately, preserving attachments and optionally adding a note. Ideal for re-routing a message by email ID without review.
Instructions
Immediately forward an existing email to new recipients, preserving original attachments and prepending an optional note. Use when you have an emailId and want to re-route the message without review. Prefer create_forward_draft to stage a forward for review first. Requires PROTONMAIL_ALLOW_SEND.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cc | No | CC recipients, comma-separated. | |
| to | Yes | Forward recipient list, comma-separated. | |
| bcc | No | BCC recipients, comma-separated. | |
| body | No | Optional message before the forwarded content (plain text). | |
| dryRun | No | Preview recipients without sending. | |
| isHtml | No | Send body as HTML (ignored when markdownBody is provided). | |
| emailId | Yes | Original email id. | |
| fromName | No | Optional display name for the From header. | |
| confirmed | No | Set to true to confirm this irreversible send when PROTONMAIL_CONFIRM_DESTRUCTIVE is enabled. | |
| attachments | No | Attachments with base64 encoded content. | |
| markdownBody | No | Optional introductory note in Markdown. Rendered to HTML with body as plain-text fallback; takes precedence over body+isHtml. | |
| sanitizeHtml | No | Strip scripts and remote image beacons from HTML before delivery. Defaults to true. | |
| appendSignature | No | Append PROTONMAIL_SIGNATURE (if configured) after your note and before the forwarded content. Set false to send without it for this one message. | |
| attachmentParts | No | Forward only specific MIME part numbers, e.g. ["2", "3.1"]. Mutually exclusive with includeAttachments:false. | |
| includeAttachments | No | Include original attachments in the forward. |