Option A — Webhooks (real time)
Best when you want to react the moment mail arrives.1
Create an endpoint
secret — you’ll use it to verify signatures.2
Route mail to it
Route a single address:…or catch everything on the domain:
3
Handle the delivery
Inboundr POSTs a signed
email.received payload to your URL. Verify the
signature, then process the message. See the
payload structure and
signature verification.Option B — Read on demand (store-only)
Best for agents that read when they act, rather than running a server. Create a store-only address (noendpointId) or just rely on catch-all with no endpoint
set — mail is parsed and stored either way.
Choosing an approach
You can use both — a store-only inbox is always readable even when it also
delivers to a webhook.