search-emails
Search emails by date range or keywords in specific folders using ClaudePost. Retrieve relevant emails from 'inbox' or 'sent' folders efficiently.
Instructions
Search emails within a date range and/or with specific keywords
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_date | No | End date in YYYY-MM-DD format (optional) | |
folder | No | Folder to search in ('inbox' or 'sent', defaults to 'inbox') | |
keyword | No | Keyword to search in email subject and body (optional) | |
start_date | No | Start date in YYYY-MM-DD format (optional) |
Input Schema (JSON Schema)
{
"properties": {
"end_date": {
"description": "End date in YYYY-MM-DD format (optional)",
"type": "string"
},
"folder": {
"description": "Folder to search in ('inbox' or 'sent', defaults to 'inbox')",
"enum": [
"inbox",
"sent"
],
"type": "string"
},
"keyword": {
"description": "Keyword to search in email subject and body (optional)",
"type": "string"
},
"start_date": {
"description": "Start date in YYYY-MM-DD format (optional)",
"type": "string"
}
},
"type": "object"
}