惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

人人都是产品经理
人人都是产品经理
Blog — PlanetScale
Blog — PlanetScale
MyScale Blog
MyScale Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学
Vercel News
Vercel News
D
Docker
博客园 - 聂微东
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏
云风的 BLOG
云风的 BLOG
D
DataBreaches.Net
B
Blog RSS Feed
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - Franky
Microsoft Security Blog
Microsoft Security Blog
美团技术团队
F
Fortinet All Blogs
MongoDB | Blog
MongoDB | Blog
T
The Blog of Author Tim Ferriss
GbyAI
GbyAI
N
Netflix TechBlog - Medium
G
Google Developers Blog
腾讯CDC

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Agent Accounts vs Transactional Email APIs
Qasim Muhammad · 2026-06-15 · via DEV Community

SendGrid gives your agent a megaphone; an Agent Account gives it a phone line.

That's the whole comparison in one sentence, but the details matter. Transactional providers — SendGrid, Resend, Postmark — are outbound pipes. They're excellent at what they do: receipts, password resets, notification blasts, deliverability at scale. What they don't have is a receive path. When someone replies to a message your agent sent, that reply bounces, lands at a no-reply address nobody reads, or goes to a human inbox the agent can't access programmatically.

For a notification system, that's fine. For an AI agent that's supposed to hold a conversation, it's fatal.

What a send-only pipe can't do

Nylas Agent Accounts (currently in beta) are full mailboxes — real addresses that send and receive, with threading, webhooks, folders, and a calendar built in. Here's the side-by-side from the migration guide:

Concern Transactional provider Agent Account
Outbound API call to send Same — POST /messages/send
Inbound No receive path Built-in mailbox; replies fire message.created
Threading You track Message-ID yourself Headers preserved, threads grouped automatically
Reply detection Parse forwarded mail or poll a shared inbox Webhook fires within seconds of arrival
DNS SPF, DKIM, DMARC for the provider MX, SPF, DKIM, DMARC for the mailbox host
State External — you build everything Threads API holds conversation history

The structural difference is the loop. A transactional send is fire-and-forget. An agent mailbox closes the circuit: send, receive the reply on the same address, read the full thread, respond in-thread.

The receive path, in two calls

Provision the account (one request, no OAuth, no refresh token), then subscribe to inbound:

curl --request POST \
  --url "https://api.us.nylas.com/v3/connect/custom" \
  --header "Authorization: Bearer $NYLAS_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{
    "provider": "nylas",
    "settings": { "email": "outreach@agents.yourcompany.com" }
  }'

curl --request POST \
  --url "https://api.us.nylas.com/v3/webhooks" \
  --header "Authorization: Bearer $NYLAS_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{
    "trigger_types": ["message.created"],
    "webhook_url": "https://youragent.example.com/webhooks/nylas"
  }'

When a reply arrives, the webhook payload includes a thread_id. Store the thread_id at send time, look it up when the webhook fires, and your agent has full conversation context before it decides what to say next. Replying in-thread is one parameter — pass reply_to_message_id and the threading headers are set for you. The recipient sees a normal threaded reply with no relay footer.

The send call barely changes

This is the part that makes the migration low-risk. Here's the before and after from the migration guide:

// Before: SendGrid / Resend / Postmark — outbound only
await sendgrid.send({
  to: "prospect@example.com",
  from: "outreach@yourcompany.com",
  subject: "Following up on your demo request",
  html: "<p>Hi Alice — wanted to follow up on...</p>",
});
// That's it. If Alice replies, the agent never sees it.

// After: Nylas Agent Account — same shape, plus a thread to track
const sent = await nylas.messages.send({
  identifier: AGENT_GRANT_ID,
  requestBody: {
    to: [{ email: "prospect@example.com", name: "Alice" }],
    subject: "Following up on your demo request",
    body: "<p>Hi Alice — wanted to follow up on...</p>",
  },
});

await db.conversations.create({
  threadId: sent.data.threadId,
  contactEmail: "prospect@example.com",
  step: "awaiting_reply",
});

Same fields, same one call. The only new behavior is storing threadId after the send — that single line is what turns fire-and-forget into a conversation. You also stop managing Message-ID values yourself: Nylas generates and preserves the threading headers, so the manual ID-tracking layer most teams build around transactional providers just gets deleted.

Where transactional providers still win

An honest comparison cuts both ways. Keep your transactional setup when:

  • You never need replies. Receipts, resets, and alerts don't want a conversation. A mailbox is overhead there.
  • You're already invested in their deliverability tooling. Warm-up management, suppression lists, and template systems are mature on those platforms.
  • Volume is the only metric. Agent Accounts cap sends at 200 messages per account per day on the free plan (paid plans have no daily cap by default), and outbound messages top out at 40 MB. A bulk notification pipeline has different needs than a conversational agent.

The migration guide is explicit about this: you don't have to replace the transactional provider entirely. Keep it for one-way mail, and use an Agent Account specifically for the conversations where the agent needs to see replies. Different addresses, different jobs.

The DNS move most teams get wrong

If you point your root domain's MX records at the mailbox host, you've just rerouted your company's inbound email. Don't. The recommended pattern is a subdomain:

  • Keep yourcompany.com MX records as-is (Google Workspace, Microsoft 365, wherever your team's mail lives).
  • Register agents.yourcompany.com and point its MX records at the new host.
  • The agent sends and receives at outreach@agents.yourcompany.com.

This also isolates the agent's sender reputation from your primary domain — which matters once the agent is sending real volume. And warm the new domain gradually: a fresh domain blasting hundreds of emails on day one gets flagged. Start low and ramp over a week or two.

Three gotchas before you ship

First, webhooks are at-least-once. The same message.created notification can arrive twice, and an agent without dedup will send the same reply twice. Second, your webhook handler will see the agent's own outbound messages too — every send lands in the sent folder and fires the same trigger, so filter early:

const msg = event.data.object;
if (msg.grant_id !== AGENT_GRANT_ID) return;

// Skip the agent's own outbound messages.
if (msg.from?.[0]?.email === "outreach@agents.yourcompany.com") return;

// Only now look up the conversation by thread_id.
const conversation = await db.conversations.findByThreadId(msg.thread_id);
if (!conversation) return; // new inbound, not a reply to something we sent

An agent that skips that check replies to itself, which fires another webhook, which... you can see where that loop goes.

Third, don't reply off the webhook payload alone — it's a notification, not the full message. Fetch the message body (and the thread, if context matters) before handing anything to the LLM, so the agent doesn't repeat or contradict itself.

If your agent currently sends through a transactional API and you've ever wished it could see what came back, the migration recipe is a step-by-step path: provision, swap the send call, subscribe to inbound, handle replies, reply in-thread. What's the first conversation loop you'd close?