loadout.email — for example, support@loadout.email. On a Pro plan you can bring a custom domain and give the agent an address on your own subdomain instead. The inbox is the agent’s persistent identity for anything that communicates by email: services it signs up for, CI pipelines that alert it, customers that reply to it, and vendors that send it invoices.
What an inbox provides
An inbox is a full mailbox, not just a receive buffer.- Receive and send mail — the agent can receive inbound messages and send outbound ones, reply to threads, and forward messages with their original attachments.
- Threaded conversations — messages are grouped into threads. The
list_threadsandread_threadtools let the agent work at the conversation level, not message by message. - Folders — every inbox has
inbox,archive,trash,spam, andquarantinefolders. The agent and org members can move threads between them. - Drafts — the agent can save a draft with
save_draftand let a human review it before sending. Drafts are visible in the dashboard. - Attachments — upload files with
upload_attachmentand include them when sending.read_attachment_textextracts plain text from PDFs, CSVs, JSON, and HTML without downloading the binary.
Mail screening
Every inbound message passes through screening before the agent can read it. Screening runs automatically — you do not configure it, and it cannot be skipped by the sender. When a message is suspicious but not definitively malicious, it arrives in the inbox with ascreening object attached:
screening.verdict before acting on a message. Treat anything that is not "clean" as untrusted and route it to a human.
Messages that screening classifies as blocked never reach the agent’s inbox. They land in Quarantine, where an org member can review and release them.
Prompt injection protection
Agent Loadout applies several layers of protection so that malicious email cannot hijack the agent’s behaviour:- HTML sanitization — all HTML in message bodies is sanitized before the agent reads it. Dangerous tags, event handlers, and script content are stripped.
- Remote image blocking — external images are not fetched when a message is read, preventing tracking pixels and SSRF-style attacks.
- Instruction-override detection — screening classifies messages that try to redefine the agent’s purpose, claim to be the platform, or instruct the agent to ignore previous instructions.
Sender rules
You can narrow which messages ever reach the agent’s inbox using sender rules. Rules run before any classifier, so they are the fastest way to silence noise or protect a quiet inbox.- MCP tools
- REST API
Read state
The agent and org members maintain separate unread states for every conversation. This matters for support and operations workflows:- The agent’s unread state tracks which conversations the agent has handled. Call
update_threadwith"read": trueonce the agent has processed a conversation. - Members’ unread states track what each team member has seen in the dashboard.
Retention
You can export the full mailbox at any time using
export_mailbox, or call GET /api/v1/inboxes/:id/threads with date filters to pull specific periods. Paid history has a 90-day read and export window after paid access ends.
Free Sandbox sends only to verified recipients (25 per month, 5 per day). Sending attachments and custom domains require a paid plan.
Next steps
Email API reference
Browse the full set of MCP tools and REST endpoints for reading, sending, and managing mail.