Back to blog
Reputation··2 min read·WillItInbox Team

Subdomain strategy: why marketing.example.com beats [email protected]

Splitting transactional, marketing, and corporate mail across subdomains protects your most important traffic from your noisiest. Here is the layout that works.

SubdomainsReputationArchitecture

Most companies start by sending everything from example.com — receipts, marketing newsletters, employee mail, the whole stream. It works until one of those streams misbehaves and the others start landing in spam. Subdomain separation is how you stop letting a Black Friday campaign hurt your password reset emails.

The recommended layout

SubdomainUseWhy
example.comEmployees, support repliesPersonal mail, low volume, high trust
mail.example.comReceipts, password resets, alertsCritical — must always deliver
news.example.comNewsletter, drip campaignsHighest volume, highest complaint risk
promo.example.comSales/promo blastsIsolates riskiest traffic
Suggested subdomain split for a typical SaaS company.

How separation actually protects you

Modern receivers (Gmail especially) maintain reputation per-domain, not just per-IP. If news.example.com racks up complaints, that reputation hit stays mostly local — mail.example.com retains its standing because it's a different reputation entity. Without separation, every subdomain shares one bucket.

DNS layout for the split

DNS records
HostTypeValueTTL
mail.example.comTXTv=spf1 include:_spf.transactional-esp.com -all3600
news.example.comTXTv=spf1 include:_spf.marketing-esp.com -all3600
selector1._domainkey.mail.example.comTXTv=DKIM1; k=rsa; p=MIIBIjANBg...3600
selector1._domainkey.news.example.comTXTv=DKIM1; k=rsa; p=MIIBIjANBg...3600
_dmarc.example.comTXTv=DMARC1; p=quarantine; rua=mailto:[email protected]3600
Example records for a separated setup.

When to migrate

  1. Stand up the new subdomain with DNS, SPF, DKIM, and a warming plan.
  2. Send a test cohort (1-5K most-engaged users) for 2 weeks.
  3. Gradually shift volume over 4-6 weeks while monitoring deliverability on both old and new.
  4. Once new is at full volume, announce the change in a normal email so users see the new From: domain in context.
  5. Keep the old domain warm with low-volume corporate mail; don't let it go silent.

Frequently asked questions

Keep reading