forward_email
Immediately forward an existing email to new recipients, preserving attachments and prepending an optional note, without reviewing the message.
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 |
|---|---|---|---|
| emailId | Yes | Original email id. | |
| to | Yes | Forward recipient list, comma-separated. | |
| body | No | Optional message before the forwarded content (plain text). | |
| markdownBody | No | Optional introductory note in Markdown. Rendered to HTML with body as plain-text fallback; takes precedence over body+isHtml. | |
| isHtml | No | Send body as HTML (ignored when markdownBody is provided). | |
| cc | No | CC recipients, comma-separated. | |
| bcc | No | 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 recipients without sending. | |
| includeAttachments | No | Include original attachments in the forward. | |
| attachmentParts | No | Forward only specific MIME part numbers, e.g. ["2", "3.1"]. Mutually exclusive with includeAttachments:false. |