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.5.tar.gz (12.0 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.5-py3-none-any.whl (10.2 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: swecc_email_sender-1.0.5.tar.gz
  • Upload date:
  • Size: 12.0 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.5.tar.gz
Algorithm Hash digest
SHA256 b2f22e423417fe9fc0603dbd95c63afa4157b4696259812eca3ef755d961d8ed
MD5 50f10da5970d80e797be18cac696f504
BLAKE2b-256 5bc56ad107c4ae180e135fa6205ef4dc520f0d8c3e5a7ce98a6e282c5fdb9fc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for swecc_email_sender-1.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 76f771416c072ede212abc767155ff178f6d3178ee5afe4b4d4e0c5f91a440fa
MD5 08c785f68263514730bf4555fda6d0e8
BLAKE2b-256 fc6d761c35ae5e937d6f5ead7ba9ecddbe5ac80ac42558d324f8e9b0f8ddd913

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