delete_email
Permanently remove an email by specifying its ID and folder using this MCP Email Service tool, ensuring efficient email management and organization.
Instructions
Delete an email permanently
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| email_id | Yes | Email ID to delete | |
| folder | No | Email folder | INBOX |
Input Schema (JSON Schema)
{
"properties": {
"email_id": {
"description": "Email ID to delete",
"type": "string"
},
"folder": {
"default": "INBOX",
"description": "Email folder",
"type": "string"
}
},
"required": [
"email_id"
],
"type": "object"
}