Send Email
proton_send_emailSend emails using Proton Mail with support for plain text or HTML formatting, multiple recipients, and CC/BCC fields.
Instructions
Send a new email. Supports plain text and HTML formats. Recipients can be a single string or array of strings.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | ||
| cc | No | ||
| bcc | No | ||
| subject | Yes | ||
| body | Yes | ||
| html | No |
Implementation Reference
- src/schemas/index.ts:35-42 (schema)Zod schema definition for 'proton_send_email' inputs.
export const SendEmailSchema = z.object({ to: z.union([z.string(), z.array(z.string())]), cc: z.union([z.string(), z.array(z.string())]).optional(), bcc: z.union([z.string(), z.array(z.string())]).optional(), subject: z.string(), body: z.string(), html: z.boolean().default(false), });