Skip to main content

A production-ready email automation library using SendGrid

Project description

SWECC Email Sender

An email automation library using SendGrid API. Supports both single and batch email sending with Markdown formatting and template substitution.

Features

  • Single and batch email sending
  • Markdown to HTML conversion with styling
  • Template substitution support
  • CSV and JSON data source support
  • Preview and validation modes

Installation

pip install swecc-email-sender

Quick Start

Single Email

from swecc_email_sender import EmailSender

sender = EmailSender()  # uses SENDGRID_API_KEY environment variable
success = sender.send_email(
    to_email="recipient@example.com",
    subject="Hello!",
    content="This is a test email",
    from_email="sender@example.com"
)

Markdown Email

success = sender.send_email(
    to_email="recipient@example.com",
    subject="Hello!",
    content="# Hello World\n\nThis is a **markdown** email",
    from_email="sender@example.com",
    is_markdown=True
)

Template Email

template = """
Hello {name}!

Your order #{order_id} has been shipped to:
{address}

Thank you for your business!
"""

success = sender.send_email(
    to_email="customer@example.com",
    subject="Order #{order_id} Shipped",
    content=template,
    from_email="shop@example.com",
    template_data={
        "name": "John Doe",
        "order_id": "12345",
        "address": "123 Main St, City, Country"
    }
)

Command Line Interface

The package includes a command-line interface for easy use:

# Single email
swecc-email-sender --from sender@example.com --to recipient@example.com --subject "Hello" --content "Test email"

# Markdown email
swecc-email-sender --from sender@example.com --to recipient@example.com --subject "Hello" --content "# Hello" --markdown

# Template with CSV data
swecc-email-sender --from sender@example.com --src recipients.csv --subject "Hello {name}" --template email.md

# Preview first email
swecc-email-sender --from sender@example.com --src data.json --subject "Hello" --template email.md --preview

# Validate templates
swecc-email-sender --from sender@example.com --src data.json --subject "Hello {name}" --template email.md --validate

Data File Formats

CSV Example (recipients.csv)

to_email,name,order_id,address
customer1@example.com,John Doe,12345,123 Main St
customer2@example.com,Jane Smith,12346,456 Oak Ave

JSON Example (data.json)

[
  {
    "to_email": "customer1@example.com",
    "name": "John Doe",
    "order_id": "12345",
    "address": "123 Main St"
  },
  {
    "to_email": "customer2@example.com",
    "name": "Jane Smith",
    "order_id": "12346",
    "address": "456 Oak Ave"
  }
]

Development

Setup

  1. Clone the repository:
git clone https://github.com/swecc/swecc-email-sender.git
cd swecc-email-sender
  1. Create a virtual environment and install dependencies:
python -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate
pip install -e ".[dev]"

Running Tests

pytest

Code Style

The project uses:

  • Black for code formatting
  • isort for import sorting
  • mypy for type checking
  • flake8 for linting

To run all checks:

ruff --fix
isort .
mypy swecc_email_sender
flake8 swecc_email_sender

License

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

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

swecc_email_sender-1.0.3.tar.gz (13.2 kB view details)

Uploaded Source

Built Distribution

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

swecc_email_sender-1.0.3-py3-none-any.whl (12.1 kB view details)

Uploaded Python 3

File details

Details for the file swecc_email_sender-1.0.3.tar.gz.

File metadata

  • Download URL: swecc_email_sender-1.0.3.tar.gz
  • Upload date:
  • Size: 13.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.11

File hashes

Hashes for swecc_email_sender-1.0.3.tar.gz
Algorithm Hash digest
SHA256 f3359762e5912f2a5e942cd0ce4f6fc2a09aef5db0b36515511bc942c0d8f75b
MD5 fb78cd904fbf2b10b4fb3a41324e9c6b
BLAKE2b-256 9c05cda8656aa2406156044ea3cbf066242103700c519ea43a54af922c3d55bf

See more details on using hashes here.

File details

Details for the file swecc_email_sender-1.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for swecc_email_sender-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 4d11b1908d6f3e42e98a3d637cca0d8e2049e3d728ae3b984bc5680fcd3beead
MD5 64625e6f1f62fc5fa2edce3c91917f71
BLAKE2b-256 05db398188c3bf70fdd6d89ab377008d3545ede74893ed9d063453e871097046

See more details on using hashes here.

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