get_stats_by_mailbox_provider
Retrieve email statistics grouped by mailbox provider to analyze delivery performance across Gmail, Outlook, Yahoo and other email services.
Instructions
Retrieve email statistics grouped by mailbox provider (Gmail, Outlook, Yahoo, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
aggregated_by | No | How to group the statistics | day |
end_date | No | End date in YYYY-MM-DD format (defaults to today) | |
mailbox_providers | No | Comma-separated list of mailbox providers to filter by | |
start_date | Yes | Start date in YYYY-MM-DD format |
Input Schema (JSON Schema)
{
"properties": {
"aggregated_by": {
"default": "day",
"description": "How to group the statistics",
"enum": [
"day",
"week",
"month"
],
"type": "string"
},
"end_date": {
"description": "End date in YYYY-MM-DD format (defaults to today)",
"type": "string"
},
"mailbox_providers": {
"description": "Comma-separated list of mailbox providers to filter by",
"type": "string"
},
"start_date": {
"description": "Start date in YYYY-MM-DD format",
"type": "string"
}
},
"required": [
"start_date"
],
"type": "object"
}