read_email
Retrieve a single email's full body and attachment list by its message ID, returning JSON with plain-text content. Use save_attachment to download attachments.
Instructions
Fetch the full content of one email message by id, plus a list of its attachments (metadata only — use save_attachment to write an attachment to disk). Returns JSON with body as plain text.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| messageId | Yes | The Graph message ID (returned by list_emails or search_emails). | |
| includeBody | No | If true, include the full body (text preferred over HTML). Default true. |