Catch staging email and webhooks.
Nothing reaches real users.
Point your app's SMTP and webhook URLs here. Read the mail, inspect the payload, replay when you need to.
No card. One inbox and one webhook endpoint on the free plan.
Staging catcherExample
Email capturedYour sign-in link is readyTo: tester@example.test
Webhook capturedPOST /payments/succeeded200 OK · application/json
{
"event": "payment.succeeded",
"environment": "staging"
}Captured email is never delivered.
See the full message.
HTML and plain text, headers, attachments. Your staging app sends mail here instead of to real people.
Connect your appInspect and replay webhooks.
Body, headers, status you choose. Replay a capture, or forward it to localhost while you debug.
Setup guideThree steps.
Works with whatever stack you already use.
- Create a projectYou get an inbox and a webhook URL.
- Point staging herePut our SMTP credentials and capture URL in your app config.
- Look at what arrivesOpen the message or payload. Use the API in tests if you want.