Get Proton Mail Email
proton_get_emailRetrieve the full content of an email by its IMAP UID, including body text and attachment metadata. Use after listing or searching emails to read specific messages.
Instructions
Retrieve a single email's full content by its IMAP UID, including body text and attachment metadata.
Use proton_list_emails or proton_search_emails first to find the UID of the email you want to read.
Args:
folder (string): The folder containing the email (default: 'INBOX')
uid (number): The IMAP UID of the email
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: Full email with headers, body text, and attachment list. Does NOT return attachment binary data.
Examples:
"Read email 1234" -> proton_get_email({ folder: "INBOX", uid: 1234 })
"Show me that email from Alice" -> first search, then get by UID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| folder | No | Mailbox folder containing the email | INBOX |
| uid | Yes | The IMAP UID of the email to retrieve | |
| response_format | No | Output format: 'markdown' or 'json' | markdown |