Flowmails for SaaS support teams: shared inboxes that wire straight into your CRM
Support teams usually want a multi-mailbox setup — `support@`, `billing@`, `abuse@` — with events streaming into the ticketing system. Most hosted ESPs handle this with mailbox aliases, but the data lives in their database and you can't easily query it from your own backend. Flowmails handles the routing and the inbox in your D1; webhooks stream inbound events into your backend in real time, and your Worker can attach metadata (account id, plan tier) to each message before it lands. The CRM integration becomes a single subscription to a webhook endpoint, not a daily CSV export.
What hurts today
The saas support teams pain points
Hosted ESPs treat mailboxes as opaque — there's no SQL access to the inbox
Webhooks fire but the inbox copy lives elsewhere, so you can't correlate
Per-mailbox pricing scales worse than per-domain pricing as you grow
How Flowmails answers
What you get instead
Full inbox is queryable SQL — `SELECT * FROM email WHERE mailbox = 'support@'`
Webhooks stream with consistent schema, so your CRM gets clean payloads
Add a new shared mailbox (e.g. `press@`, `legal@`) by appending a routing rule — no plan change
FAQ
Common questions from saas support teams
Other personas