Authentication is handled for you
When you verify a domain, Dairo generates the full authentication record set and hands it to you to publish. Once the records resolve, every message you send is cryptographically signed and aligned with your domain, so receivers can confirm it wasn’t forged or altered in transit.Tighten DMARC over time
The DMARC record Dairo returns starts in monitor-only mode:v=DMARC1; p=none; rua=mailto:postmaster@yourapp.com. Publish it as is, collect
reports, and tighten the policy once they show clean authentication.
Bounces and complaints
Two delivery events move reputation the wrong way:- Bounce (
message.bounced) — delivery failed. APermanentbounce means the address is undeliverable: stop sending to it. ATransientbounce (full mailbox, temporary server issue) may succeed on a later attempt. - Complaint (
message.complained) — the recipient marked your message as spam. This is the single most damaging signal there is.
GET /v1/messages/{messageId}/events (scope messages:read):
Complaints become suppressions
When a recipient complains, Dairo records a suppression for that address on your account. From then on, any email you send to that address — API, SDK, CLI, or MCP — is refused with a400, so one bad signal can’t snowball into a
blocklisted domain:
Override a suppression deliberately
If a human decides the recipient should be contacted anyway, setignoreComplaints: true on the send (or --ignore-complaints in the CLI). The
send proceeds, and the response carries a warnings array naming each
suppressed recipient:
Permanent
yourself — repeatedly sending to dead addresses erodes reputation too.
Reputation is built by you
Authentication is necessary but not sufficient. A brand-new domain has no history, so even perfectly authenticated mail can land in spam at first.- Warm up gradually. Ramp volume over days and weeks so mailbox providers learn your domain sends wanted mail. Your mail rides Dairo’s shared, actively monitored sending IPs, so there is no IP warmup to manage — only your domain’s reputation to build.
- Send to people who want it. Opens, replies, and “not spam” actions are the strongest positive signals. Prune recipients who never engage.
- Keep the bad signals low. High complaint or hard-bounce rates erase
reputation fast. Honor suppressions and drop addresses that bounce
Permanent. - Mind your content. Spammy phrasing, link-heavy bodies, and misleading subjects trip content filters. Plain, relevant content lands better on a cold domain.
For an AI agent that sends on its own, see
Send limits & reputation to gate its sends on recent
bounce and complaint signals.
Next steps
- Send an email — start sending from your verified domain.
- API reference — full schemas for messages, events, and domains.