Skip to main content

Apache Airflow provider for Mailtrap.io email service

Project description

Mailtrap Airflow Provider

PyPI version License

An Apache Airflow provider for Mailtrap.io - send transactional emails from your Airflow DAGs.

Installation

pip install airflow-provider-mailtrap

Requirements

  • Python >= 3.9
  • Apache Airflow >= 2.4
  • Mailtrap API token (get one here)

Setup

1. Create a Mailtrap Connection

In the Airflow UI, go to Admin → Connections → Add:

Field Value
Connection Id mailtrap_default
Connection Type mailtrap
Password Your Mailtrap API token
Extra (optional) {"sender": "noreply@yourdomain.com", "sender_name": "Your App"}

2. Use the Operator in Your DAG

from mailtrap_provider.operators.send_email import MailtrapSendEmailOperator

send_email = MailtrapSendEmailOperator(
    task_id="send_welcome_email",
    to="user@example.com",
    subject="Welcome!",
    html="<h1>Welcome to our service!</h1>",
    sender="noreply@yourdomain.com",
    sender_name="My App",
)

Usage Examples

Send a Plain Text Email

from mailtrap_provider.operators.send_email import MailtrapSendEmailOperator

send_notification = MailtrapSendEmailOperator(
    task_id="send_notification",
    to="user@example.com",
    subject="Task Completed",
    text="Your workflow has completed successfully.",
    sender="notifications@yourdomain.com",
)

Send an HTML Email

send_report = MailtrapSendEmailOperator(
    task_id="send_report",
    to="team@example.com",
    subject="Daily Report",
    html="""
    <html>
        <body>
            <h1>Daily Report</h1>
            <p>Here is your daily summary...</p>
        </body>
    </html>
    """,
    sender="reports@yourdomain.com",
    sender_name="Report Bot",
    category="daily-reports",  # For Mailtrap analytics
)

Send to Multiple Recipients

send_to_team = MailtrapSendEmailOperator(
    task_id="notify_team",
    to=["alice@example.com", "bob@example.com"],
    subject="Team Update",
    text="Important update for the team.",
    sender="noreply@yourdomain.com",
)

Use Templated Fields

All parameters are templatable, so you can use Jinja templates:

send_dynamic_email = MailtrapSendEmailOperator(
    task_id="send_dynamic_email",
    to="{{ var.value.recipient_email }}",
    subject="Report for {{ ds }}",
    text="Data processed: {{ ti.xcom_pull(task_ids='process_data') }}",
    sender="{{ var.value.sender_email }}",
)

Operator Parameters

Parameter Type Required Description
to str | list[str] Recipient email address(es)
subject str Email subject line
text str ⚠️ Plain text body (required if no html)
html str ⚠️ HTML body (required if no text)
sender str ⚠️ Sender email (falls back to connection extra)
sender_name str Display name for sender
category str Category for Mailtrap analytics
mailtrap_conn_id str Connection ID (default: mailtrap_default)

Using the Hook Directly

For more advanced use cases, you can use the hook directly:

from mailtrap_provider.hooks.mailtrap import MailtrapHook

# Simple usage with the helper method
hook = MailtrapHook()
response = hook.send_email(
    sender="sender@example.com",
    to="recipient@example.com",
    subject="Hello",
    text="Hello from Airflow!",
)

# Advanced usage with raw client
client = hook.get_conn()  # Returns mailtrap.MailtrapClient
# Use client directly for advanced features

Connection Extras

You can store default sender information in the connection extras:

{
  "sender": "noreply@yourdomain.com",
  "sender_name": "Your Application"
}

When sender is not provided to the operator, it will use the value from connection extras.

Development

Setup Development Environment

# Install Astro CLI (macOS)
brew install astro

# Setup dev environment
./scripts/setup-dev.sh

# Start local Airflow
cd dev && astro dev start

Access Airflow UI at http://localhost:8080 (user: admin, pass: admin)

Note: The setup script enables AIRFLOW__CORE__TEST_CONNECTION=Enabled so the "Test" button works in the connection form. This is disabled by default in Airflow for security.

After Code Changes

./scripts/sync-provider.sh

Run Tests

pip install pytest requests-mock
pytest tests/ -v

License

Apache License 2.0 - see LICENSE for details.

Links

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

airflow_provider_mailtrap-1.0.0.tar.gz (14.2 kB view details)

Uploaded Source

Built Distribution

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

airflow_provider_mailtrap-1.0.0-py3-none-any.whl (17.0 kB view details)

Uploaded Python 3

File details

Details for the file airflow_provider_mailtrap-1.0.0.tar.gz.

File metadata

File hashes

Hashes for airflow_provider_mailtrap-1.0.0.tar.gz
Algorithm Hash digest
SHA256 c0abe727b98272f915f30640b6847854f7bc7f3c5f8c096aabf12795d649eac0
MD5 0508668295817b85b9055afdac50ba88
BLAKE2b-256 1be47856d03baef8d6422c85bbce1076a0a00e84bff5ba689b023ca0a0f047f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for airflow_provider_mailtrap-1.0.0.tar.gz:

Publisher: publish.yml on mailtrap/airflow-provider-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 airflow_provider_mailtrap-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for airflow_provider_mailtrap-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 8df1a4caaecb2a15774227bc2f99be05d4c0a46e7a8d45e79faf62e4bbe973d3
MD5 233ff066d87183df646c69decf0031c2
BLAKE2b-256 cdaa2c8dd758d933ed252e282252bdfbdc66bd487a91754a6ba1405a07227d42

See more details on using hashes here.

Provenance

The following attestation bundles were made for airflow_provider_mailtrap-1.0.0-py3-none-any.whl:

Publisher: publish.yml on mailtrap/airflow-provider-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