Send a transactional email through Drin reliably. Use when the user or agent needs to send an email (notification, receipt, OTP, alert, password reset, reply) via the Drin email API — covers picking a verified sending domain, composing the message, sending it, and handling suppressed/rate-limited errors. Works through the @drin00/mcp tools, the drin CLI, the drin SDK, or the raw /v1 REST API.
集成
drin-agent-inbox
试用Run an autonomous email inbox with Drin — receive inbound email on a domain, read conversation threads, and reply in-thread. Use when building or operating an agent that must read and respond to email (support triage, scheduling, an "email me to do X" interface), set up inbound receiving, test the receive pipeline, or process new inbound messages and act on them.
它能做什么
Run an autonomous email inbox with Drin — receive inbound email on a domain, read conversation threads, and reply in-thread. Use when building or operating an agent that must read and respond to email (support triage, scheduling, an "email me to do X" interface), set up inbound receiving, test the receive pipeline, or process new inbound messages and act on them.
技能文档
Operating an agent email inbox with Drin
Drin is bidirectional: besides sending, a domain can receive email, which Drin parses into conversation threads your agent can read and reply to. This is the foundation for an agent you can email.
1. Enable receiving on a domain
- Turn it on:
set_domain_receivingwithenabled: true(orPATCH /v1/domains/:id/receiving). Drin returns the MX record(s) to publish. - Publish the MX record(s) in DNS. Until they propagate, no inbound arrives.
- Verify with
get_domain_receiving/GET /v1/domains/:id/receiving.
The domain must already be verified for sending (see drin-email-best-practices)
so the agent can also reply.
2. Create an inbox (a receive address)
create_inboxwith{ address: "support@acme.com", domainId: "" }(orPOST /v1/inboxes). This is the address people email to reach the agent.- List existing ones with
list_inboxes.
3. Read inbound — threads, not raw mailboxes
Inbound and outbound messages are joined into threads.
list_threads(optionallyinboxId) — most-recent-first feed. Each thread has alastMessageAtand subject.get_threadwith the thread id — the full conversation, oldest→newest, both directions, including each message'sdirection,from,to,subject, and status.- For a single message's full content:
get_email(detail/lifecycle),get_email_body(the archived{ html, text }), andlist_email_attachments(download bytes via the authenticatedurl).
Two ways to know when new mail arrives:
- Poll: periodically
list_threadsand diff against the last id/timestamp you processed. - Webhook (preferred for real-time): register a webhook for the inbound
events with
create_webhook(drin webhooks create --url --event inbound_received/POST /v1/webhooks); Drin POSTs a signed payload when mail is received, and returns asigningSecretONCE on creation. Verify the signature (drin.webhooks.verifyin the SDK) before trusting it.
4. Decide, then reply in-thread
For each new inbound message:
- Read the body (
get_email_body) and any attachments. - Decide what to do (answer, take an action with other tools, escalate).
- Reply on the thread so the recipient's client keeps the conversation
together:
reply_emailwith{ messageId: "", text: "...", html: "..." }(orPOST /v1/emails/:id/reply). Drin setsIn-Reply-To/Referencesand theRe:subject automatically;fromdefaults to the inbox address andtoto the original sender.
Keep a record of which message ids you've already handled so you never reply
twice (idempotency). When replying to action requests, pass an idempotencyKey.
5. Test without real email
Use the simulator to exercise the whole receive → thread → (webhook) path safely:
simulate_inboundwith{ to: "support@acme.com", from: "Customer ", subject: "Help", text: "..." }(orPOST /v1/inbound/simulate). The synthesized message is flaggedtest_mode(excluded from metrics/billing) but flows through ingest, threads, and any webhooks exactly like a real one — so you can build and verify the agent loop before pointing real DNS at it.
Minimal agent loop (pseudocode)
seen = load_processed_ids()
for thread in list_threads(inboxId):
convo = get_thread(thread.id)
for msg in convo.messages where msg.direction == "inbound" and msg.id not in seen:
body = get_email_body(msg.id)
action = decide(convo, body) # your agent's reasoning
reply_email(messageId=msg.id, text=action.reply, idempotencyKey=msg.id)
seen.add(msg.id)
save_processed_ids(seen)
Always honor suppressions and never reply to mail you can't authenticate as genuinely inbound (verify webhook signatures).
相关技能
Get transactional email deliverability right with Drin — authenticate the sending domain (SPF/DKIM/DMARC), stay under bounce/complaint limits, honor suppressions, and include one-click unsubscribe where required. Use when setting up a sending domain, diagnosing why mail lands in spam or bounces, deciding sending volume/warmup, or reviewing an email program for compliance and reputation.
Build a transactional HTML email that renders correctly across Gmail, Outlook, and Apple Mail, with a plain-text alternative and dark-mode support. Use when writing or editing the HTML/text body of an email, or creating a reusable Drin template with variables. Covers the table-based layout rules, inlined styles, bulletproof buttons, preheader, and Drin's {{handlebars}} variable/section syntax.
Narrative-aware, approval-gated inbox triage
Search and summarize agent inboxes safely
Create a human-approved AI agent identity