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

推荐订阅源

量子位
D
Docker
月光博客
月光博客
MongoDB | Blog
MongoDB | Blog
Vercel News
Vercel News
美团技术团队
博客园 - 叶小钗
I
InfoQ
Jina AI
Jina AI
博客园 - 司徒正美
雷峰网
雷峰网
B
Blog
Y
Y Combinator Blog
A
About on SuperTechFans
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
大猫的无限游戏
大猫的无限游戏
Microsoft Security Blog
Microsoft Security Blog
Stack Overflow Blog
Stack Overflow Blog
腾讯CDC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Recent Announcements
Recent Announcements
V
V2EX
N
Netflix TechBlog - Medium

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
Managing Many Domains in One Application
Qasim Muhammad · 2026-06-15 · via DEV Community

How many email domains should one application be allowed to manage? Most email platforms answer with a number and a pricing tier. Nylas Agent Accounts — programmatic mailboxes currently in beta — answer with: unlimited. One application can host agent mailboxes across any number of registered domains, and that single design decision shapes how you organize tenants, environments, and brands.

Here's how multi-domain setups actually work, and the three patterns the provisioning docs call out.

Domains are the unit of identity

Every agent mailbox lives on a domain. Before creating an account, you register the domain once per organization — then create as many accounts under it as your plan allows. Registration takes three steps: add the domain in the Dashboard (picking the US or EU data center region), publish the generated DNS records at your provider, and wait for automatic verification. Two record types do the work: an MX record routes inbound mail, and TXT records prove ownership and set up SPF/DKIM for outbound.

Once a domain's status hits verified, account creation is one call:

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": "sales-agent@agents.yourcompany.com"
    }
  }'

The response includes a grant_id — the handle for every subsequent messages, calendar, and webhook call. No refresh token, because there's no OAuth provider behind it. If you prefer the terminal, the Nylas CLI wraps the same flow: nylas agent account create agent@agents.yourcompany.com provisions the grant and prints its ID, and nylas agent account list shows everything on the application.

Pattern 1: per-customer domains

Multi-tenant SaaS is the obvious case. Your customers bring their own domains; you register each one and provision agent mailboxes on their behalf — scheduling@customer-a.com, scheduling@customer-b.com — all running in one application with the same code path. Each customer's accounts can sit in their own workspace with their own policy, which means per-customer send quotas, retention windows, and spam settings without forking anything.

The part that matters commercially: each domain carries its own sender reputation. Customer A's aggressive outreach campaign can't poison Customer B's deliverability.

Pattern 2: reputation isolation

That same isolation property works inside one company. The docs describe splitting high-volume outbound across sales-a.yourcompany.com, sales-b.yourcompany.com, and so on, so issues on one domain don't contaminate the others. If a campaign on sales-a triggers complaints, sales-b keeps delivering while you fix it.

Related advice worth taking even at small scale: use a dedicated subdomain for production agents — agents.yourcompany.com rather than yourcompany.com — so agent traffic never touches the reputation of your primary marketing domain. A misbehaving bot shouldn't be able to hurt the deliverability of your CEO's email.

Pattern 3: environment separation

Staging traffic on the production domain is a classic self-inflicted wound. The multi-domain model fixes it cleanly: register agents.staging.yourcompany.com and agents.yourcompany.com in the same application. Your staging environment provisions real, working mailboxes — actual sends, actual receives, actual webhooks — without any risk to production sender reputation.

For even cheaper experimentation, there's a zero-DNS option: trial domains. Every application can register a *.nylas.email subdomain from the Dashboard with no DNS setup at all, giving you addresses like test@your-application.nylas.email instantly. You can mix trial and custom domains freely in one application — a common path is prototyping on the trial domain and registering a custom one before launch.

Routing accounts into workspaces

Domains decide what an address looks like; workspaces decide how it behaves. Policies and rules attach to workspaces, not to individual grants — so in a multi-domain setup, the workspace assignment at creation time is the step that actually wires a new account into the right tenant's quotas and spam settings. Pass workspace_id as a top-level field (not inside settings):

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",
    "workspace_id": "<WORKSPACE_ID>",
    "settings": {
      "email": "scheduling@customer-a.com"
    }
  }'

If you omit workspace_id, there's a sensible fallback chain: with auto_group enabled, the account is grouped into a workspace whose domain matches its email address — which pairs naturally with the per-customer-domain pattern, since each customer's accounts cluster automatically. Otherwise it lands in your application's default workspace. And nothing is permanent: PATCH /v3/grants/{grant_id} with a new workspace_id moves an existing account, so you can re-shard tenants later without re-provisioning.

One operational note for multi-domain apps: the message.created webhook payload has the same shape for every grant, so a single handler serves all domains. Branch on the grant's provider ("nylas") if you also have connected Gmail or Outlook grants in the same application and need to tell agent deliveries apart.

Where the limits actually live

Since domains are unlimited, the constraints sit elsewhere. From the overview docs, the free-plan numbers:

  • Send rate: 200 messages per account per day (paid plans have no daily cap by default)
  • Storage: 3 GB per organization
  • Retention: 30 days inbox, 7 days spam, configurable through policies

Notice that none of these are per-domain. Send limits attach to accounts, storage attaches to the organization, and policies attach to workspaces. Domains are purely an organizational and reputational boundary — which is exactly why you can have as many as your architecture wants.

A sketch of a tenant model

Putting it together, a multi-tenant layout might look like:

Application (one API key)
├── customer-a.com          → workspace A → policy: 50 sends/day
│   ├── scheduling@customer-a.com
│   └── support@customer-a.com
├── customer-b.com          → workspace B → policy: defaults
│   └── scheduling@customer-b.com
├── agents.yourcompany.com  → internal workspace
│   └── ops-agent@agents.yourcompany.com
└── your-app.nylas.email    → default workspace (dev/test)

One API key, one webhook subscription, one code path — and clean boundaries for billing, reputation, and blast radius.

If you're designing a multi-tenant agent product, start by sketching your domain map before you provision anything: which domains are customer-owned, which are yours, and which workspace each feeds into. Then walk through the provisioning guide and register your first two — one trial, one custom — and compare the setup friction yourself.