Missive
The complete email toolkit for Rust.
- 10+ providers — SES, SMTP, SendGrid, Mailgun, Postmark, Resend, and more
- Local mailbox — Browse, preview, and inspect emails during development
- Templates — Askama integration with type-safe rendering
- Extensible — Custom providers and interceptors
- Async — Built for Tokio
- Test assertions —
assert_email_sent(),assert_email_to(), etc.
Requirements
Rust 1.75+ (async traits)
Quick Start
Add to your .env:
# ---- Missive Email ----
EMAIL_PROVIDER=resend
EMAIL_FROM=noreply@example.com
RESEND_API_KEY=re_xxxxx
Send emails:
use ;
let email = new
.to
.subject
.text_body;
deliver.await?;
That's it. No configuration code, no builder structs, no initialization.
Installation
Add missive to your Cargo.toml:
[]
= { = "0.3", = ["resend"] }
Enable the feature for your email provider. See Feature Flags for all options.
Providers
Missive supports popular transactional email services out of the box:
| Provider | Feature | Environment Variables |
|---|---|---|
| SMTP | smtp |
SMTP_HOST, SMTP_PORT, SMTP_USERNAME, SMTP_PASSWORD |
| Resend | resend |
RESEND_API_KEY |
| SendGrid | sendgrid |
SENDGRID_API_KEY |
| Postmark | postmark |
POSTMARK_API_KEY |
| Brevo | brevo |
BREVO_API_KEY |
| Mailgun | mailgun |
MAILGUN_API_KEY, MAILGUN_DOMAIN |
| Mailjet | mailjet |
MAILJET_API_KEY, MAILJET_SECRET_KEY |
| Amazon SES | amazon_ses |
AWS_REGION, AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY |
| Mailtrap | mailtrap |
MAILTRAP_API_KEY |
| Unsent | unsent |
UNSENT_API_KEY |
| Local | local |
(none) |
| Logger | (always available) | (none) |
Configure which provider to use with the EMAIL_PROVIDER environment variable:
EMAIL_PROVIDER=sendgrid
Feature Flags
Missive uses Cargo features for conditional compilation - only the providers you enable are compiled into your binary. This keeps binaries small and compile times fast.
Minimal: Single Provider
If you only use one provider, enable just that feature:
[]
= { = "0.3", = ["resend"] }
RESEND_API_KEY=re_xxxxx
# EMAIL_PROVIDER is auto-detected when only one is enabled
This gives you the smallest binary and fastest compile. You'd need to recompile to switch providers.
Flexible: Multiple Providers
For runtime flexibility (e.g., different providers per environment), enable multiple:
[]
= { = "0.3", = ["smtp", "resend", "local"] }
Then configure per environment in .env:
# ---- Missive Email ----
# Development: local mailbox preview at /dev/mailbox
EMAIL_PROVIDER=local
EMAIL_FROM=noreply@example.com
# ---- Missive Email ----
# Staging: test with Resend
EMAIL_PROVIDER=resend
EMAIL_FROM=noreply@example.com
RESEND_API_KEY=re_test_xxx
# ---- Missive Email ----
# Production: your own SMTP
EMAIL_PROVIDER=smtp
EMAIL_FROM=noreply@example.com
SMTP_HOST=mail.example.com
SMTP_USERNAME=apikey
SMTP_PASSWORD=your-api-key
Same compiled binary, different behavior per environment.
Auto-Detection
When EMAIL_PROVIDER is not set, Missive automatically detects which provider to use based on:
- Available API keys - checks for
RESEND_API_KEY,SENDGRID_API_KEY, etc. - Enabled features - only considers providers whose feature is compiled in
- Fallback to local - if the
localfeature is enabled and no API keys found
Detection order: Resend → SendGrid → Postmark → Unsent → SMTP → Local
This means zero-config for simple setups:
= { = "0.3", = ["resend"] }
RESEND_API_KEY=re_xxxxx
# No EMAIL_PROVIDER needed - Resend is auto-detected
Use EMAIL_PROVIDER explicitly when:
- Multiple providers are enabled and you want to choose one
- You want to override auto-detection
- You're using
loggerorlogger_full(no API key to detect)
Bundles
# Development setup (local + preview UI)
= { = "0.3", = ["dev"] }
# Everything (all providers + templates)
= { = "0.3", = ["full"] }
Available Features
| Feature | Description |
|---|---|
smtp |
SMTP provider via lettre |
resend |
Resend API |
sendgrid |
SendGrid API |
postmark |
Postmark API |
unsent |
Unsent API |
local |
LocalMailer - in-memory storage + test assertions |
preview |
Standalone web UI on separate port (no framework needed) |
preview-axum |
Preview UI as Axum router (nest into your Axum app) |
preview-actix |
Preview UI as Actix scope (nest into your Actix app) |
templates |
Askama template integration |
metrics |
Prometheus-style metrics |
dev |
Enables local + preview |
full |
All providers + templates + preview |
Environment Variables
Global Settings
| Variable | Description | Default |
|---|---|---|
EMAIL_PROVIDER |
Which provider to use | smtp |
EMAIL_FROM |
Default sender email | (none) |
EMAIL_FROM_NAME |
Default sender name | (none) |
Provider-Specific
SMTP:
| Variable | Description | Default |
|---|---|---|
SMTP_HOST |
SMTP server hostname | (required) |
SMTP_PORT |
SMTP server port | 587 |
SMTP_USERNAME |
SMTP username | (optional) |
SMTP_PASSWORD |
SMTP password | (optional) |
SMTP_TLS |
TLS mode: required, opportunistic, none |
required |
API Providers:
| Variable | Provider |
|---|---|
RESEND_API_KEY |
Resend |
SENDGRID_API_KEY |
SendGrid |
POSTMARK_API_KEY |
Postmark |
UNSENT_API_KEY |
Unsent |
Composing Emails
Basic Email
use Email;
let email = new
.from
.to
.subject
.text_body
.html_body;
With Display Names
let email = new
.from
.to
.subject;
Multiple Recipients
let email = new
.to
.to
.cc
.bcc
.reply_to;
Custom Headers
let email = new
.header
.header;
Provider-Specific Options
Pass options specific to your email provider:
// Resend: tags and scheduling
let email = new
.provider_option
.provider_option;
// SendGrid: categories and tracking
let email = new
.provider_option
.provider_option;
Custom Recipient Types
Implement ToAddress for your types to use them directly in email builders:
use ;
// Now use directly:
let user = User ;
let email = new
.to
.subject;
Email Validation
Missive provides email address validation:
use Address;
// Lenient (logs warnings for suspicious input)
let addr = new;
// Strict RFC 5321/5322 validation
let addr = parse?;
let addr = parse_with_name?;
// International domain names (IDN/Punycode)
let addr = new;
let ascii = addr.to_ascii?; // Converts to punycode if needed
Attachments
From Bytes
use ;
let email = new
.to
.subject
.attachment;
From File
// Eager loading (reads file immediately)
let attachment = from_path?;
// Lazy loading (reads file at send time)
let attachment = from_path_lazy?;
Inline Attachments (HTML Embedding)
let email = new
.html_body
.attachment;
Testing
Use LocalMailer to capture emails in tests:
use ;
use LocalMailer;
use *;
async
Available Assertions
| Function | Description |
|---|---|
assert_email_sent(&mailer) |
At least one email was sent |
assert_no_emails_sent(&mailer) |
No emails were sent |
assert_email_count(&mailer, n) |
Exactly n emails were sent |
assert_email_to(&mailer, email) |
Email was sent to address |
assert_email_from(&mailer, email) |
Email was sent from address |
assert_email_subject(&mailer, subject) |
Email has exact subject |
assert_email_subject_contains(&mailer, text) |
Subject contains text |
assert_email_html_contains(&mailer, text) |
HTML body contains text |
assert_email_text_contains(&mailer, text) |
Text body contains text |
refute_email_to(&mailer, email) |
No email was sent to address |
Simulating Failures
let mailer = new;
mailer.set_failure;
let result = deliver_with.await;
assert!;
Flush Emails
// Get and clear all emails atomically
let emails = flush_emails;
assert_eq!;
// Mailer is now empty
assert_no_emails_sent;
Mailbox Preview
View sent emails in your browser during development.
Choose the right feature for your setup:
| Feature | Use Case |
|---|---|
preview |
Standalone server on port 3001 (no framework needed) |
preview-axum |
Nest into your Axum app on the same port |
preview-actix |
Nest into your Actix app on the same port |
Standalone (preview feature)
use LocalMailer;
use mailbox_router;
let mailer = new;
let storage = mailer.storage;
configure;
// Starts background server at http://localhost:3001/dev/mailbox
let _router = mailbox_router;
With Axum (preview-axum feature)
use Router;
use LocalMailer;
use mailbox_router;
let mailer = new;
let storage = mailer.storage;
configure;
let app = new
.nest;
// Preview is now at http://localhost:3000/dev/mailbox (same port as your app)
See docs/preview.md for Actix setup and more options.
Features
- View all sent emails
- HTML and plain text preview
- View email headers
- Download attachments
- Delete individual emails or clear all
- JSON API for programmatic access
Interceptors
Interceptors let you modify or block emails before they are sent. Use them to add headers, redirect recipients in development, or enforce business rules.
use ;
use ResendMailer;
let mailer = new
// Add tracking header to all emails
.with_interceptor
// Block emails to certain domains
.with_interceptor;
See docs/interceptors.md for more examples including development redirects and multi-tenant branding.
Per-Call Mailer Override
Override the global mailer for specific emails:
use ;
use ResendMailer;
// Use a different API key for this one email
let special_mailer = new;
let email = new
.to
.subject;
deliver_with.await?;
Async Emails
Missive's deliver() is already async. For fire-and-forget sending:
// Using tokio::spawn
spawn;
For reliable delivery, use a job queue like apalis:
use *;
async
Metrics
Enable Prometheus-style metrics with features = ["metrics"]:
= { = "0.3", = ["resend", "metrics"] }
Missive emits these metrics:
| Metric | Type | Labels | Description |
|---|---|---|---|
missive_emails_total |
Counter | provider, status | Total emails sent |
missive_delivery_duration_seconds |
Histogram | provider | Delivery duration |
missive_batch_total |
Counter | provider, status | Batch operations |
missive_batch_size |
Histogram | provider | Emails per batch |
Install a recorder in your app to collect them:
// Using metrics-exporter-prometheus
new
.install
.expect;
If you don't install a recorder, metric calls are no-ops (zero overhead).
Observability
Missive uses the tracing crate for observability. All email deliveries create spans:
missive.deliver { provider="resend", to=["user@example.com"], subject="Hello" }
Configure with any tracing subscriber:
init;
Error Handling
Delivery errors are returned to the caller - missive does not automatically retry or crash. Errors are logged via tracing::error! for observability.
match deliver.await
Error variants for granular handling:
use ;
match deliver.await
Logger Provider
Use EMAIL_PROVIDER=logger to only log emails without sending:
# Brief logging (just recipients and subject)
EMAIL_PROVIDER=logger
# Full logging (all fields, bodies at debug level)
EMAIL_PROVIDER=logger_full
Useful for staging environments or debugging.
Templates
Enable features = ["templates"] for Askama integration:
use ;
use Template;
let template = WelcomeEmail ;
let email = new
.to
.subject
.render_html?;
API Reference
Core Functions
| Function | Description |
|---|---|
deliver(&email) |
Send email using global mailer |
deliver_with(&email, &mailer) |
Send email using specific mailer |
deliver_many(&emails) |
Send multiple emails |
configure(mailer) |
Set the global mailer |
init() |
Initialize from environment variables |
is_configured() |
Check if email is properly configured |
Email Builder
| Method | Description |
|---|---|
.from(addr) |
Set sender |
.to(addr) |
Add recipient |
.cc(addr) |
Add CC recipient |
.bcc(addr) |
Add BCC recipient |
.reply_to(addr) |
Add reply-to address |
.subject(text) |
Set subject line |
.text_body(text) |
Set plain text body |
.html_body(html) |
Set HTML body |
.attachment(att) |
Add attachment |
.header(name, value) |
Add custom header |
.provider_option(key, value) |
Set provider-specific option |
.assign(key, value) |
Set template variable |
Documentation
For more detailed guides, see the docs/ folder:
- Interceptors - Modify or block emails before delivery
- Providers - Detailed configuration for each email provider
- Testing - Complete testing guide with all assertion functions
- Observability - Telemetry, metrics, Grafana dashboards, and alerting
- Preview - Mailbox preview UI configuration
- Templates - Askama template integration
Acknowledgments
Missive's design is inspired by Swoosh, the excellent Elixir email library.
License
MIT