Quickstart
Up and running in 5 minutes. Start here →
Inboxical is a cloud-hosted email testing API. Instead of configuring a local SMTP server or sharing a test inbox with your team, you create isolated inboxes on demand — one per test case — and assert email delivery through a clean REST API.
// Create an inboxconst inbox = await api.post('/inboxes')// → { id: "ix_3f9a", address: "[email protected]" }
// Trigger your appawait myApp.register({ email: inbox.address })
// Assert the email arrivedconst [msg] = await api.get(`/inboxes/${inbox.id}/messages`)expect(msg.subject).toBe('Welcome to MyApp!')Quickstart
Up and running in 5 minutes. Start here →
API Reference
Full reference for inboxes, messages, and webhooks. View →
Jest Guide
Integrate with your existing Jest test suite. View →
Playwright Guide
End-to-end email testing with Playwright. View →