Ferrum Mail

Send transactional email
from Rust in 3 lines.

Type-safe SDK. Compile-time templates. Async everywhere.
3,000 emails free — no credit card.

Get API Key — Free View on GitHub

Looking for a personal inbox instead? Create a @ferrum-mail.com mailbox →

🦀 The only transactional email API with a first-party Rust SDK.
Type-safe templates. Compile-time validation. Async everywhere. crates.io →
DKIM + SPF + DMARCon every send
TLS 1.3in transit
AES-256-GCMat rest
Argon2idpassword hashing
Open source9 crates on crates.io
Live statusferrum-mail.com/status →

Send your first email in 3 lines

use ferrum_email::Client;

let client = Client::new("fe_live_<your_api_key>");
client.send()
    .from("[email protected]")
    .to("[email protected]")
    .subject("Welcome!")
    .html("<h1>Hi there</h1>")
    .await?;
# POST to /v1/emails — bearer auth, JSON body
curl https://ferrum-mail.com/v1/emails \
  -H "Authorization: Bearer fe_live_<your_api_key>" \
  -H "Content-Type: application/json" \
  -d '{
    "from": "[email protected]",
    "to": ["[email protected]"],
    "subject": "Welcome!",
    "html": "<h1>Hi there</h1>"
  }'

Full API reference & SDKs on GitHub · crates.io

For Developers

Send transactional emails from your app with one API call. Type-safe Rust SDK with cross-client rendering.

Get API Key — Free

Personal & Business Email

Your own @ferrum-mail.com address. Desktop, mobile, and web. Import from Gmail, Outlook, Yahoo.

Create Mailbox — Free

Simple, Transparent Pricing

Start free. Upgrade when you need more.

Free

$0/mo
3,000 emails/month · 100/day
Start Free

Business

$100/mo
100,000 emails/month
Get Started

Enterprise

$899/mo
Unlimited emails
Contact Us

DKIM + SPF + DMARC

Every outgoing message signed with DKIM, aligned with SPF, and reported via DMARC. rDNS on all sending IPs. Inbox, not spam.

TLS 1.3 · AES-256 at rest

TLS 1.3 on every connection. API keys, passwords, and Stripe credentials encrypted at rest with AES-256-GCM. Argon2id password hashing.

Zero-trust request gateway

SQL injection firewall, SSRF guard, rate limiting, and content scanning on every API request. Defense in depth on top of TLS.

Cross-Platform

Web, desktop (Windows/Mac/Linux), mobile (iOS/Android), CLI, and TUI. Use Ferrum everywhere.

Open Source SDK

MIT/Apache-2.0 licensed. Component-based email templates with compile-time validation.

Built in Rust

Memory-safe, zero-cost abstractions, async everywhere. No garbage collector, no runtime overhead.

Download Ferrum Mail

Desktop client, CLI tools, and server binaries — all with SLSA provenance.