list_emails_from_sender
Retrieve emails from a specific sender in your IMAP mailbox, displaying subject, sender, date, and unique ID for each message sorted by newest first.
Instructions
List all emails from a specific sender email address (e.g. "alice@example.com"). Returns an array of {id, subject, from, date} objects sorted newest-first. The id is a globally unique identifier — use it with fetch_email_content to read the full email.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sender | Yes | The sender email address to search for (e.g. "alice@example.com"). | |
| mailbox | No | Mailbox to list from. Default: "INBOX". |