Transactional • Public API

Transactional Email Delivery Service & API for Developers

Reliable inbox placement with a clean REST API, signed webhooks, and tooling you can ship with. Mailgun says: “DELIVER EMAILS.” We say: deliver results.

MailEnv developer tools screenshot
API first

Developer friendly for SaaS

Simple, East REST API

  • Get started fast with JS & Python SDKs

Install the SDK

Node.js npm i @mailenv/sdk
Python pip install mailenv
Go go get github.com/mailenv/mailenv-go
Quick start
curl -X POST https://api.mailenv.com/v1/send \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "from": "hello@yourdomain.com",
    "to": ["user@example.com"],
    "subject": "Welcome to MailEnv",
    "text": "Thanks for joining!",
    "tags": ["onboarding"]
  }'