Mnexa AI released E2a, an open-source email gateway specifically designed for AI agent systems. The project launched on Hacker News on May 11, 2026, addressing a gap in agent infrastructure by providing authenticated email capabilities with agent-specific features like conversation threading and human-in-the-loop review.
E2a Provides Agent-Specific Email Features Beyond Traditional APIs
E2a differentiates itself from traditional email APIs through features built specifically for agent workflows. Email threading automatically maps to agent conversation sessions, maintaining consistency across multi-turn interactions. The system includes a human-in-the-loop review mechanism for outbound emails, allowing developers to hold outbound mail until approval via dashboard, magic-link email, or CLI—particularly useful during testing phases.
The platform supports quick onboarding and offboarding of email addresses for agents within minutes. For delivery, E2a offers two modes: WebSocket connections for local agents and at-least-once webhook delivery for cloud agents, with the webhook option not requiring a public URL.
Technical Implementation Includes SPF/DKIM Verification and Multiple Deployment Options
E2a implements authenticated transport with SPF/DKIM verified inbound email and HMAC-signed delivery. The system includes SDKs and CLI tools for integration. Developers can choose between a hosted instance at e2a.dev—which includes a shared agents.e2a.dev domain for instant slug-based onboarding without DNS setup—or self-hosted deployment using cosign-verified Docker images.
The team acknowledges several features not yet implemented: DMARC support (currently only SPF/DKIM), scoped API keys, high-availability/multi-region deployment (currently single VM plus single Postgres), app-layer email data encryption, and compliance attestations like SOC 2 or HIPAA.
The Project Addresses Email Integration Challenges for Agent Systems
The Mnexa AI team created E2a while building their own agent system when they needed email as a trigger mechanism. Rather than keep it internal, they extracted the functionality into a standalone service. The motivation stems from the complexity of integrating traditional email services with agent systems—many agents need email for notifications, customer communication, or workflow triggers, but existing solutions weren't designed with agent-specific requirements in mind.
The project is available on GitHub with full source code, providing developers with readable infrastructure code rather than vendor black boxes for identity and authentication.
Key Takeaways
- E2a is an open-source email gateway built specifically for AI agents, with features like conversation threading that maps to agent sessions and human-in-the-loop approval for outbound emails
- The platform offers two deployment modes: hosted at e2a.dev with shared domain support, or self-hosted with cosign-verified Docker images
- Technical features include SPF/DKIM verified inbound email, HMAC-signed delivery, and dual delivery modes via WebSocket or webhooks
- The project launched on Hacker News on May 11, 2026, receiving 46 points and addressing a specific infrastructure gap for agent developers
- Not yet implemented features include DMARC support, scoped API keys, HA/multi-region deployment, and compliance attestations