Move Email
proton_move_emailMove emails between folders in Proton Mail by specifying source folder, email UID, and destination folder to organize your inbox.
Instructions
Move an email from one folder to another. Specify source folder, email UID, and destination folder.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| folder | Yes | ||
| uid | Yes | ||
| destination | Yes |
Implementation Reference
- src/schemas/index.ts:51-55 (schema)Input validation schema for 'proton_move_email'.
export const MoveEmailSchema = z.object({ folder: z.string(), uid: z.number().int().positive(), destination: z.string(), });