forward_email
Forward an email to new recipients as a new thread. Optionally add an introduction, CC, BCC, or additional attachments.
Instructions
Forward an email to new recipients.
Unlike reply_email, this is a new thread: no In-Reply-To or References headers are set, and the subject gets a deduped "Fwd: " prefix.
Args: folder: Folder containing the original email email_id: UID of the email to forward to: Forward recipients (comma-separated) body: Optional introduction text prepended to the forwarded content cc: CC recipients (comma-separated) bcc: BCC recipients (comma-separated) html: If True, intro body is HTML (affects inline display only) attachments: Additional files to attach alongside the original as_attachment: If True (default), original message is attached as message/rfc822 (preserves all original headers and structure). If False, headers + body are inlined as quoted text in the body. save_to_sent: If True (default), save a copy to the Sent folder
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| folder | Yes | ||
| email_id | Yes | ||
| to | Yes | ||
| body | No | ||
| cc | No | ||
| bcc | No | ||
| html | No | ||
| attachments | No | ||
| as_attachment | No | ||
| save_to_sent | No |