For Developer QA & Testing Only

Mail Agent 66

Programmatic email receiving API for automated testing, QA pipelines, and developer workflows. Fast, reliable, and built for legitimate use cases.

Built for Real QA Workflows

Not a spam tool. Designed for developers who need reliable email testing infrastructure.

๐Ÿงช

Automated Testing

Test signup flows, password resets, and email notifications in CI/CD pipelines without relying on real inboxes.

๐Ÿ”—

Webhook Integration

Receive instant webhooks when emails arrive. Perfect for event-driven testing and QA automation frameworks.

๐Ÿข

Team QA Tools

Generate disposable addresses for your QA team. Isolated inboxes per test case with full email history.

โšก

Instant Provisioning

Create email accounts via API in seconds. No manual setup, no waiting. Scale your test matrix effortlessly.

๐Ÿ”’

Secure & Isolated

Each inbox is isolated and encrypted. Your test data stays private with role-based access control.

๐Ÿ“Š

Monitoring & Analytics

Track delivery rates, timing, and email content patterns. Debug email flows with detailed logs and history.

Simple Pricing

Start free, scale as you grow. All plans include API access.

Starter

$0/month
  • 100 emails/month
  • 2 email addresses
  • REST API access
  • 7-day retention
  • Community support
Start Free

Team

$49/month
  • 50,000 emails/month
  • Unlimited addresses
  • Dedicated support
  • 90-day retention
  • Custom integrations
Get Team

Developer First

Simple REST API. Get started in under 2 minutes.

# 1. Create an email account
curl -X POST https://mail.agent66.bond/api/public/addUser \
  -H "Content-Type: application/json" \
  -H "X-Public-Api-Secret: YOUR_SECRET" \
  -d '{"email": "test@example.com", "password": "secure123"}'

# 2. Login to get access token
curl -X POST https://mail.agent66.bond/api/login \
  -H "Content-Type: application/json" \
  -d '{"email": "test@example.com", "password": "secure123"}'

# 3. Check inbox
curl https://mail.agent66.bond/api/email/latest \
  -H "Authorization: Bearer YOUR_TOKEN"

# 4. Setup webhook for instant notifications
curl -X POST https://mail.agent66.bond/api/webhook \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -d '{"url": "https://your-app.com/inbound"}'