Reply to Email
proton_reply_emailReply to emails in Proton Mail with proper threading headers. Set up replies to all recipients or just the sender using the Proton MCP Server.
Instructions
Send a reply to an existing email. Properly sets In-Reply-To and References headers for threading. Can reply to all or just the sender.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| folder | No | INBOX | |
| uid | Yes | ||
| body | Yes | ||
| reply_all | No |
Implementation Reference
- src/schemas/index.ts:44-49 (schema)The `ReplyEmailSchema` Zod object defines the expected input parameters for the `proton_reply_email` tool, including `folder`, `uid`, `body`, and `reply_all`.
export const ReplyEmailSchema = z.object({ folder: z.string().default('INBOX'), uid: z.number().int().positive(), body: z.string(), reply_all: z.boolean().default(false), });