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

推荐订阅源

量子位
D
DataBreaches.Net
Microsoft Security Blog
Microsoft Security Blog
V
Visual Studio Blog
GbyAI
GbyAI
美团技术团队
云风的 BLOG
云风的 BLOG
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
博客园 - 叶小钗
Engineering at Meta
Engineering at Meta
博客园 - 三生石上(FineUI控件)
N
Netflix TechBlog - Medium
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
G
Google Developers Blog
博客园 - 【当耐特】
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
宝玉的分享
宝玉的分享
阮一峰的网络日志
阮一峰的网络日志
T
The Blog of Author Tim Ferriss
Y
Y Combinator Blog
U
Unit 42
P
Proofpoint News Feed
V
V2EX

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
Inside an Agent Mailbox: Folders, Storage, and Structure
Qasim Muhammad · 2026-06-15 · via DEV Community

Qasim Muhammad

One GET request tells you most of what an agent mailbox is made of:

curl --request GET \
  --url "https://api.us.nylas.com/v3/grants/<GRANT_ID>/folders" \
  --header "Authorization: Bearer $NYLAS_API_KEY"

Run that against a freshly created Nylas Agent Account — the hosted-mailbox product currently in beta — and you get six system folders back before you've sent a single message: inbox, sent, drafts, trash, junk, and archive. They're provisioned automatically, their names are reserved, and you can create custom folders alongside them with POST /folders. That structure isn't decoration; it shapes how an agent's whole workflow gets organized.

What every mailbox ships with

Provision an account and the returned grant_id unlocks a complete mailbox, not just a send endpoint:

  • A real address on a verified domain (or a *.nylas.email trial domain), with its own deliverability reputation.
  • The six system folders, plus room for custom ones — a triage agent might add escalations and invoices and route mail into them with rules.
  • A thread index built from standard RFC 5322 headers, so replies group into conversations automatically.
  • Optional IMAP/SMTP access via an app_password, so a human can watch the same mailbox from Outlook or Apple Mail.

The Messages, Threads, Folders, Drafts, and Attachments endpoints all work against /v3/grants/{grant_id}/... exactly as they do for any connected grant.

The life of an inbound message

The mailboxes doc traces five stages between a stranger hitting "send" and your agent reacting:

  1. SMTP delivery. The sender's server looks up the domain's MX record and hands the message to the hosted inbound infrastructure.
  2. Policy checks. If the grant's workspace carries a policy, inbound rules run here — block rejects at the SMTP layer (the message never exists in the mailbox), mark_as_spam routes to junk, assign_to_folder routes to a named folder. Every evaluation is logged for audit.
  3. Storage and folder delivery. Default destination is inbox, unless a rule said otherwise.
  4. Webhook fire. message.created goes out with the standard payload shape. One edge case: bodies over ~1 MB flip the trigger name to message.created.truncated and omit the body — fetch the full message by ID in that case.
  5. Thread indexing. In-Reply-To and References headers attach the message to an existing thread or start a new one; the webhook's thread_id is your key for reconstructing conversation state.

Step 2 is the underrated one for agent builders. Filtering at the SMTP stage means mailer-daemon noise, auto-replies, and obvious spam can be dropped before message.created fires — which means before your LLM spends tokens reading them.

Attachments have their own gate: policy limits (limit_attachment_size_limit, limit_attachment_count_limit, limit_attachment_allowed_types) control what's accepted. Oversized attachments get dropped from the message, but the message itself still delivers and the webhook still fires.

What the send path enforces

Outbound goes through POST /v3/grants/{grant_id}/messages/send, with a few hard behaviors worth knowing before you ship:

  • No identity spoofing. The From header is stamped with the grant's primary address; omit from and it defaults to the grant's address with the grant's display name.
  • Quota per account. 200 messages per account per day on the free plan; paid plans have no daily cap by default, and a policy can set a stricter quota. Over-limit sends fail with an error on the API call.
  • 40 MB outbound cap on every send path — API, draft sends, and SMTP submission alike. Recipient servers often enforce less (typically ~25 MB), so staying under the cap doesn't guarantee acceptance.
  • Outbound rules run pre-SMTP. Enabled application rules matching outbound.type or recipients are evaluated before the message leaves.

After handoff, three webhooks report what happened:

Trigger When it fires
message.send_success The recipient server accepted the message
message.send_failed The send failed before reaching the recipient — an outbound rule block, a policy limit, a deliverability gate
message.bounce_detected Hard or soft bounce returned by the remote server

Because the platform owns the SMTP path end to end, you get send-side visibility on every message — and since sender reputation is shared across every account on a domain, outbound hygiene is a domain-level concern, not a per-mailbox one. One absence to plan around: native open and click tracking (message.opened, message.link_clicked) isn't emitted for API sends from an Agent Account, so deliverability is what you observe through the three triggers above, not engagement pixels.

Drafts as an approval queue

The drafts folder isn't vestigial. Full CRUD lives at /v3/grants/{grant_id}/drafts, and a POST to an existing draft sends it. That turns the folder into a natural human-in-the-loop mechanism — the agent writes, a human approves, and the approval is one call:

# Agent proposes a reply
curl --request POST \
  --url "https://api.us.nylas.com/v3/grants/<GRANT_ID>/drafts" \
  --header "Authorization: Bearer $NYLAS_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{
    "to": [{ "email": "alice@example.com" }],
    "subject": "Re: Refund request for order #4821",
    "body": "Hi Alice, I can process that refund today..."
  }'

# Reviewer approves — sending an existing draft is a POST to the draft itself
curl --request POST \
  --url "https://api.us.nylas.com/v3/grants/<GRANT_ID>/drafts/<DRAFT_ID>" \
  --header "Authorization: Bearer $NYLAS_API_KEY"

The reviewer can read the pending draft through the API, or — because the same mailbox is exposable over IMAP with an app_password — straight from Outlook or Apple Mail. Sending the draft behaves exactly like POST /messages/send, quota and outbound rules included. No custom review-queue infrastructure required.

Designing around the structure

The mailbox layout suggests an agent architecture: rules sort inbound into folders by type, the agent processes folder by folder, drafts hold anything needing human eyes, and archive marks what's done. State lives in the mailbox itself, inspectable by any IMAP client.

If your agent runs on a schedule rather than reacting to webhooks, the structure supports that too — poll GET /messages with received_after for batch workflows, then walk folders in priority order. Webhooks remain the better fit for conversational loops, since delivery typically lands within seconds of the SMTP handoff. Either way, budget for the free plan's 3 GB of storage per organization and 30-day inbox retention; an agent that archives aggressively and lets old mail age out fits comfortably inside both.

Next step: create an account, list its folders, then add one custom folder and an assign_to_folder rule — and watch your inbound mail start sorting itself before your agent reads a word. The supported endpoints reference has the complete folder and message API surface.