Monitors email deliverability via Mailgun Optimize (InboxReady) API. Use when the user wants to test inbox placement with seed lists, monitor IP or domain blocklists, track spam traps, check email health scores, review DMARC reports, or pull Google Postmaster or Microsoft SNDS data. Also use when emails are going to spam, sender reputation is dropping, inbox rate is declining, a domain needs warmup monitoring, an IP needs blocklist removal, or the user wants to set up email deliverability monitoring.
From sinch-claude-pluginnpx claudepluginhub sinch/sinch-plugins --plugin sinch-claude-pluginThis skill uses the workspace's default tool permissions.
references/dmarc.mdreferences/google-postmaster.mdGuides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Details PluginEval's skill quality evaluation: 3 layers (static, LLM judge), 10 dimensions, rubrics, formulas, anti-patterns, badges. Use to interpret scores, improve triggering, calibrate thresholds.
.env files or environment variables for MAILGUN_API_KEY.POST /v1/inboxready/domains?domain=example.com.POST /v4/inbox/tests with html or template_name. The response includes a result_id — poll GET /v4/inbox/results/{result_id} for results./v2/spamtraps (current). The /v1/spamtraps endpoint is deprecated.Mailgun Optimize (by Sinch), formerly InboxReady, is a deliverability suite: inbox placement testing via seed lists, IP and domain blocklist monitoring, spam trap tracking, email health scoring, DMARC reporting, Google Postmaster Tools integration, and Microsoft SNDS data.
See sinch-authentication for full auth setup.
All requests use HTTP Basic Auth — username: api, password: your Mailgun private API key.
| Region | Base URL |
|---|---|
| US | https://api.mailgun.net/ |
| EU | https://api.eu.mailgun.net/ |
curl --user 'api:YOUR_API_KEY' \
https://api.mailgun.net/v1/inboxready/domains
POST /v1/inboxready/domains?domain=. Domains are the foundation for blocklist tracking, DMARC reports, and Postmaster Tools. Supports list, verify, and delete.POST /v4/inbox/seedlists), then create a test (POST /v4/inbox/tests) with html or template_name. The response includes a result_id — poll GET /v4/inbox/results/{result_id} for results./v1/inboxready/ip_addresses and /v1/inboxready/ip_addresses/{ip}./v1/monitoring/domains/{domain}/blocklists. View events via /v1/monitoring/domains/{domain}/events or /v1/monitoring/domains/events./v2/spamtraps./v1/maverick-score/total (aggregate) and /v1/maverick-score/grouped (by domain/IP/subaccount)./v1/reputationanalytics/gpt/. Requires domain verification with Google first./v1/reputationanalytics/snds and /v1/reputationanalytics/snds/{ip}./v1/dmarc/. Requires DMARC DNS records to be configured./v1/alerts/events and /v1/alerts/settings/events.POST /v4/inbox/seedlistsPOST /v4/inbox/tests with html body content or template_nameresult_idGET /v4/inbox/results/{result_id}When a user reports deliverability issues, investigate in this order:
GET /v1/inboxready/ip_addresses/{ip}
GET /v1/monitoring/domains/{domain}/blocklists
GET /v2/spamtraps
GET /v1/maverick-score/total
GET /v1/reputationanalytics/gpt/domains/{domain}
GET /v1/dmarc/domains/{domain}
Set up full deliverability monitoring for a new sending domain:
POST /v1/inboxready/domains?domain=example.comPUT /v1/inboxready/domains/verify?domain=example.comPOST /v1/inboxready/ip_addresses with the IP addressPOST /v1/alerts/settings/events for blocklist and reputation changesGET /v1/dmarc/records/{domain}, configure DNS, then verify data in GET /v1/dmarc/domains/{domain}GET /v1/reputationanalytics/gpt/domains/{domain}Create alert settings via POST /v1/alerts/settings/events. Update with PUT or remove with DELETE on /v1/alerts/settings/events/{id}.