Every email is a row. Three fields fill automatically on arrival — category, importance, a one-line summary. Ask anything in plain English. Search by meaning. Automate with workflows. Connect any agent via 28 MCP tools.
SELECT mail_from_name, mail_from, subject, category, importance, received_at, replied FROM messages WHERE category = 'inquiry' AND replied = false ORDER BY importance DESC, received_at DESC LIMIT 20;
| from | subject | category | importance | received | replied |
|---|
Category, importance, and summary are written the moment your email arrives. Everything else is structured from the message itself.
Three examples. The agent compiles each natural-language question to SQL, vector search, or both.
SELECT id, subject, importance, embedding <-> $query_vec AS dist FROM messages ORDER BY dist ASC LIMIT 20;
SELECT category, COUNT(*) AS count, string_agg(summary, ' | ') FROM messages WHERE 'complaint' = ANY(labels) AND received_at > now() - interval '7 days' GROUP BY category ORDER BY count DESC;
SELECT subject, summary, importance, received_at FROM messages WHERE category = 'inquiry' AND replied = false ORDER BY importance DESC, received_at ASC;
Add a trigger and an action. Watch it run. No DAGs. No Zapier soup. Just queries with side effects.
| plan | price | receive + MCP + search + workflows | send from UI/API | custom domain | unlimited aliases | |
|---|---|---|---|---|---|---|
| free | $0 /mo | yes | — | — | — | get started |
| pro recommended | $10 /mo | yes | yes | yes | yes |