Skip to main content

Email trap (mail catcher) for the Stapel framework — capture outbound email in dev/staging

Project description

stapel-mailtrap

CI codecov

An email trap (mail catcher) for dev/staging: outbound mail is captured into a TrappedEmail journal instead of being sent, and browsed through a read-only "Mail" API. Plugs into stapel-notifications' email-provider seam by dotted path — no module-to-module import.

Part of the Stapel framework — composable Django apps that deploy as a monolith or as microservices without changing module code.

Install

pip install stapel-mailtrap
# settings.py
INSTALLED_APPS = [
    # ...
    "stapel_mailtrap",
]

# urls.py
path("mailtrap/", include("stapel_mailtrap.urls"))
python manage.py migrate

Trapping notifications email

Point stapel-notifications' email provider at the trap — one setting, no code:

STAPEL_NOTIFICATIONS = {
    "EMAIL_PROVIDER": "stapel_mailtrap.provider.MailtrapEmailProvider",
}

Every email stapel-notifications would send is now persisted and inspectable instead. The provider matches the notifications email duck type (send(recipient, subject, html_body, headers)) — see MODULE.md §3.

Trapping any backend

For a host whose own mail path should trap, call the service directly:

from stapel_mailtrap import trap_email

trap_email(
    to_email="alice@example.com",
    from_email="bot@example.com",
    subject="Your code",
    body_html="<b>123456</b>",
    body_text="123456",
    attachments=[{"filename": "invoice.pdf", "content_type": "application/pdf", "size": 8123}],
    scope_key="workspace-42",   # opaque host scope
)

It persists the row and emits mailtrap.email.trapped transactionally. Attachments are metadata only — raw bytes are never stored.

HTTP API ("Письма" / Mail)

Read-only (the trap is filled by the provider / trap_email, never via the API):

Route Meaning
GET mailtrap/emails/ Trapped emails, newest first, paginated (anchor); ?scope_key= filters
GET mailtrap/emails/<uuid>/ One trapped email — full HTML/text bodies + attachment metadata

Default permission is staff/service only (trapped mail can contain OTPs and magic links). Override permission_classes and set a SCOPE_PROVIDER for per-tenant visibility — see MODULE.md.

Retention

STAPEL_MAILTRAP = {
    "MAX_EMAILS": 1000,   # hard cap on stored rows (0 disables)
    "TTL_DAYS": 30,       # delete rows older than N days (0 disables)
}

Run the sweep from any scheduler:

python manage.py purge_trapped_emails            # --dry-run supported

Or schedule the Celery task (celery is an optional host dependency):

CELERY_BEAT_SCHEDULE = {
    "purge-trapped-emails": {
        "task": "stapel_mailtrap.tasks.purge_trapped_emails",
        "schedule": crontab(hour=3, minute=0),   # nightly
    },
}

Settings

All configuration lives in the STAPEL_MAILTRAP namespace (dict setting, flat setting, or env var — resolved lazily):

Key Default Meaning
SCOPE_PROVIDER "stapel_mailtrap.scope.DefaultScopeProvider" Dotted path to a ScopeProvider subclass — the multi-tenant seam.
MAX_EMAILS 1000 Retention count cap (0 disables).
TTL_DAYS 30 Retention age cap in days (0 disables).
STORE_BODY True False stores the envelope only (bodies empty).

comm surface

Kind Name Contract
Event mailtrap.email.trapped {email_id, to, from?, subject, scope_key, attachment_count, trapped_at}schema

Extension points

See MODULE.md — the agent-facing map of every fork-free seam (settings, the ScopeProvider seam, the notifications email-provider adapter with its duck-typed contract, serializer seams, permissions, comm surface, system checks).

Development

pip install -e . && pip install pytest pytest-django pytest-cov ruff jsonschema
./setup-hooks.sh
pytest tests/

License

MIT

Project details


Download files

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

Source Distribution

stapel_mailtrap-0.1.1.tar.gz (20.8 kB view details)

Uploaded Source

Built Distribution

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

stapel_mailtrap-0.1.1-py3-none-any.whl (22.0 kB view details)

Uploaded Python 3

File details

Details for the file stapel_mailtrap-0.1.1.tar.gz.

File metadata

  • Download URL: stapel_mailtrap-0.1.1.tar.gz
  • Upload date:
  • Size: 20.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for stapel_mailtrap-0.1.1.tar.gz
Algorithm Hash digest
SHA256 494fa05a1687e557558cb6b2494c0125a9fe27f64859f180dc428eeab466367e
MD5 1eccb550b24ef74f259d245d00fecad8
BLAKE2b-256 de4f41721a17f2333606ca771ec918d199cbf56d3c26cad3de036e1fe76fccdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for stapel_mailtrap-0.1.1.tar.gz:

Publisher: publish.yml on usestapel/stapel-mailtrap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file stapel_mailtrap-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for stapel_mailtrap-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 bad279d3081b68d0b0cb5a6adb287db7c7663f46ee39ad65745c55ecb461c3d7
MD5 08d26df351364dacab5922d7632646d9
BLAKE2b-256 519d324307b37c7890e83168a9729b484e2ad1f73fc08bcfcbf6fbd77a0c19f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for stapel_mailtrap-0.1.1-py3-none-any.whl:

Publisher: publish.yml on usestapel/stapel-mailtrap

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page