rootmail

Marketing

Replies & threads

Inbound replies, parsed and threaded — answer in-app or by webhook.

When someone replies, rootmail parses the message and attaches it to a thread. Read threads over the API, answer them, and get a webhook the moment a reply arrives.

GET/v1/threads
GET/v1/threads/:id
POST/v1/threads/:id/reply
POST/v1/inbound

React to replies in real time

Subscribe to the message.received webhook event to route inbound replies straight into your own systems. See Webhooks.

reply.ts
await mail.threads.reply(threadId, { html: "<p>Thanks for writing back!</p>" });