Skip to main content

mailing2fast-fastapi

🚀 Simple and fast mailing module for FastAPI with async support and Redis queue management

📖 Conventions reference: this package follows the 2fast-handbook for ecosystem conventions (structure, versioning, README, commits, release).

[!WARNING] Internal Use Notice

This package is designed and maintained by the Solautyc Team for internal use. While it is publicly available, it may not work as expected in all environments or use cases outside of our specific infrastructure. We do not provide support or guarantees for external usage, and we are not responsible for any issues that may arise from using this package in other contexts.

Use at your own risk. Contributions and feedback are welcome, but compatibility with external environments is not guaranteed.

Features

  • 📧 Multiple SMTP Accounts: Configure multiple named email accounts (e.g., "support", "transactions", "notifications")
  • Async Email Sending: Full async/await support with aiosmtplib
  • 🔄 Redis Queue Management: FIFO queue with automatic retry and dead letter queue
  • 🎯 Two Sending Modes:
    • Synchronous: Send and wait for success/failure response
    • Async Queue: Fire-and-forget with background worker processing
  • 🚦 Rate Limiting: Configurable rate limits (default: 100 emails/hour)
  • 📝 Jinja2 Templates: Built-in template support for HTML emails
  • 📎 Attachments: Easy attachment handling
  • 🔁 Automatic Retry: Exponential backoff for failed emails
  • ⚙️ Pydantic Settings: Type-safe configuration with environment variables
  • 🎨 FastAPI Integration: Ready-to-use dependencies and lifecycle hooks

Installation

From PyPI (Recommended)

pip install mailing2fast-fastapi

From Source

# Clone the repository
git clone https://github.com/AngelDanielSanchezCastillo/mailing2fast-fastapi.git
cd mailing2fast-fastapi

# Install in development mode
pip install -e .

# Or install with dev dependencies
pip install -e ".[dev]"

Quick Start

1. Configure Environment Variables

Create a .env file:

# Default SMTP Account
MAIL_SMTP_ACCOUNTS__DEFAULT__HOST=smtp.gmail.com
MAIL_SMTP_ACCOUNTS__DEFAULT__PORT=587
MAIL_SMTP_ACCOUNTS__DEFAULT__USERNAME=your-email@gmail.com
MAIL_SMTP_ACCOUNTS__DEFAULT__PASSWORD=your-app-password
MAIL_SMTP_ACCOUNTS__DEFAULT__FROM_EMAIL=your-email@gmail.com
MAIL_SMTP_ACCOUNTS__DEFAULT__FROM_NAME=Your Name

# Support Account (optional)
MAIL_SMTP_ACCOUNTS__SUPPORT__HOST=smtp.gmail.com
MAIL_SMTP_ACCOUNTS__SUPPORT__PORT=587
MAIL_SMTP_ACCOUNTS__SUPPORT__USERNAME=support@yourcompany.com
MAIL_SMTP_ACCOUNTS__SUPPORT__PASSWORD=support-password
MAIL_SMTP_ACCOUNTS__SUPPORT__FROM_EMAIL=support@yourcompany.com
MAIL_SMTP_ACCOUNTS__SUPPORT__FROM_NAME=Support Team

# Redis Configuration
MAIL_REDIS__HOST=localhost
MAIL_REDIS__PORT=6379
MAIL_REDIS__DB=0

# Rate Limiting (optional)
MAIL_RATE_LIMIT__MAX_EMAILS_PER_HOUR=100
MAIL_RATE_LIMIT__MAX_EMAILS_PER_MINUTE=10

2. Basic Usage - Synchronous Sending

import asyncio
from mailing2fast_fastapi import EmailSender, EmailMessage

async def main():
    sender = EmailSender()
    
    email = EmailMessage(
        to=["recipient@example.com"],
        subject="Hello from mailing2fast!",
        body="This is a plain text email",
        html="<h1>This is an HTML email</h1>",
    )
    
    result = await sender.send_email(email)
    
    if result.is_success():
        print(f"Email sent! Message ID: {result.message_id}")
    else:
        print(f"Failed to send: {result.error}")

asyncio.run(main())

3. Async Queue Mode

import asyncio
from mailing2fast_fastapi import EmailQueue, EmailMessage, EmailWorker

async def main():
    # Start background worker
    worker = EmailWorker()
    await worker.start()
    
    # Queue emails (fire-and-forget)
    queue = EmailQueue()
    await queue.connect()
    
    email = EmailMessage(
        to=["recipient@example.com"],
        subject="Queued Email",
        body="This email will be sent by the background worker",
    )
    
    await queue.enqueue(email)
    print("Email queued successfully!")
    
    # Worker will process it in the background
    # Keep worker running...
    await asyncio.sleep(60)
    
    await worker.stop()
    await queue.disconnect()

asyncio.run(main())

4. FastAPI Integration

from fastapi import FastAPI, Depends
from mailing2fast_fastapi import (
    EmailMessage,
    EmailSender,
    EmailQueue,
    MailManager,
    get_email_sender,
    get_email_queue,
    get_mail_manager,
    startup_email_worker,
    shutdown_email_worker,
)

app = FastAPI()

# Start/stop worker with app lifecycle
@app.on_event("startup")
async def startup():
    await startup_email_worker()

@app.on_event("shutdown")
async def shutdown():
    await shutdown_email_worker()

# Synchronous sending endpoint (default account)
@app.post("/send-email")
async def send_email(sender: EmailSender = Depends(get_email_sender)):
    email = EmailMessage(
        to=["user@example.com"],
        subject="Welcome!",
        html="<h1>Welcome to our service!</h1>",
    )
    
    result = await sender.send_email(email)
    return {"status": result.status, "message_id": result.message_id}

# Async queue endpoint
@app.post("/queue-email")
async def queue_email(queue: EmailQueue = Depends(get_email_queue)):
    email = EmailMessage(
        to=["user@example.com"],
        subject="Newsletter",
        html="<h1>Monthly Newsletter</h1>",
        smtp_account="support",  # Use specific account
    )
    
    await queue.enqueue(email)
    return {"status": "queued"}

# Using MailManager to access multiple accounts
@app.get("/accounts")
async def list_accounts(manager: MailManager = Depends(get_mail_manager)):
    return {
        "accounts": manager.list_accounts(),
        "default": manager.get_default_account()
    }

Multiple SMTP Accounts

Using MailManager (Recommended)

The MailManager provides centralized management of multiple SMTP accounts:

from mailing2fast_fastapi import get_manager, EmailMessage

# Get the manager singleton
manager = get_manager()

# List all configured accounts
accounts = manager.list_accounts()
print(f"Available accounts: {accounts}")

# Get sender for specific account
support_sender = manager.get_sender("support")
transactions_sender = manager.get_sender("transactions")

# Send email using specific sender
email = EmailMessage(
    to=["customer@example.com"],
    subject="Payment Confirmation",
    html="<h1>Payment received!</h1>",
)
result = await transactions_sender.send_email(email)

Using FastAPI Dependencies

from functools import partial
from fastapi import Depends
from mailing2fast_fastapi import get_email_sender, EmailSender

# Create dependency for specific account
get_support_sender = partial(get_email_sender, account_name="support")

@app.post("/send-support-email")
async def send_support_email(sender: EmailSender = Depends(get_support_sender)):
    email = EmailMessage(
        to=["user@example.com"],
        subject="Support Response",
        html="<h1>We're here to help!</h1>",
    )
    result = await sender.send_email(email)
    return {"status": result.status}

Using smtp_account Parameter

email = EmailMessage(
    to=["customer@example.com"],
    subject="Payment Confirmation",
    html="<h1>Payment received!</h1>",
    smtp_account="transactions",  # Use transactions account
)

Templates

Create Jinja2 templates in templates/emails/:

templates/emails/welcome.html:

<h1>Welcome, {{ name }}!</h1>
<p>Thank you for joining {{ company_name }}.</p>

Usage:

email = EmailMessage(
    to=["user@example.com"],
    subject="Welcome!",
    template_name="welcome.html",
    template_data={
        "name": "John Doe",
        "company_name": "Acme Corp"
    },
)

Rate Limiting

Rate limiting is enabled by default (100 emails/hour). Configure via environment variables:

MAIL_RATE_LIMIT__ENABLED=true
MAIL_RATE_LIMIT__MAX_EMAILS_PER_HOUR=100
MAIL_RATE_LIMIT__MAX_EMAILS_PER_MINUTE=10

Queue Management

Monitor queue status:

queue = EmailQueue()
await queue.connect()

stats = {
    "pending": await queue.get_queue_size(),
    "retry": await queue.get_retry_queue_size(),
    "failed": await queue.get_dlq_size(),
}
print(stats)

📚 Documentation

Module Structure

mailing2fast-fastapi/
├── pyproject.toml
├── MANIFEST.in
├── README.md
├── LICENSE
├── src/
│   └── mailing2fast_fastapi/
│       ├── __init__.py
│       ├── __version__.py
│       ├── settings.py       # Pydantic settings
│       ├── models.py          # Email schemas
│       ├── manager.py         # Mail manager (multi-account)
│       ├── sender.py          # Email sender
│       ├── queue.py           # Redis queue
│       ├── worker.py          # Background worker
│       └── dependencies.py    # FastAPI deps
├── docs/
│   ├── env.example
│   ├── usage.md
│   └── publishing.md
├── examples/
│   ├── basic_usage.py
│   ├── async_queue.py
│   └── fastapi_integration.py
└── tests/
    ├── test_sender.py
    ├── test_queue.py
    └── test_integration.py

Acknowledgments

This project uses the following open-source packages:

  • FastAPI - Modern web framework (MIT License)
  • Pydantic - Data validation (MIT License)
  • Redis - Redis client (MIT License)
  • aiosmtplib - Async SMTP client (MIT License)
  • Jinja2 - Template engine (BSD License)

We are grateful to the maintainers and contributors of these projects.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Copyright (c) 2026 Angel Daniel Sanchez Castillo

Note: This package is designed and maintained by the Solautyc Team for internal use. While publicly available under MIT license, use at your own risk.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mailing2fast_fastapi-0.2.3.tar.gz (26.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mailing2fast_fastapi-0.2.3-py3-none-any.whl (22.3 kB view details)

Uploaded Python 3

File details

Details for the file mailing2fast_fastapi-0.2.3.tar.gz.

File metadata

  • Download URL: mailing2fast_fastapi-0.2.3.tar.gz
  • Upload date:
  • Size: 26.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.9

File hashes

Hashes for mailing2fast_fastapi-0.2.3.tar.gz
Algorithm Hash digest
SHA256 a50ed5c396c4036b97b74e1e40cc9df38734a78ea63d94f09932606836fb6703
MD5 f81145b8ff17cc59922b1d60e664905e
BLAKE2b-256 590fe15530e98d7ff12fafcf6a40f8574e7ce1e92ec9e2bb4a34bb7f5e22259a

See more details on using hashes here.

File details

Details for the file mailing2fast_fastapi-0.2.3-py3-none-any.whl.

File metadata

File hashes

Hashes for mailing2fast_fastapi-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 e47be7e3dbfc345acdf0988ac394b56a01f6a272a01296dc07a67980fd25bd3a
MD5 413bd42ba9fb4ff79332edb807e19e2b
BLAKE2b-256 246d0e6c66cd915faa05097e901c3dfc96513aea6487e4b35a18c7b12c570454

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.2.3 This release

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page