search_draft_emails
Locate and retrieve draft emails in Microsoft Outlook using specific keywords, streamlining email management and reducing manual search time.
Instructions
Search draft emails
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | Number of results to return | |
| query | Yes | Search keywords |
Input Schema (JSON Schema)
{
"properties": {
"count": {
"default": 10,
"description": "Number of results to return",
"type": "number"
},
"query": {
"description": "Search keywords",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}