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
- Clone the repository:
git clone https://github.com/swecc/swecc-email-sender.git
cd swecc-email-sender
- 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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file swecc_email_sender-1.0.7.tar.gz.
File metadata
- Download URL: swecc_email_sender-1.0.7.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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
add83ccd9585b57961ad9d407ab7fa86cbbd0d2a1c0f2948db1a8654e42d7299
|
|
| MD5 |
8f85295be2533667bee6adae9bc4db15
|
|
| BLAKE2b-256 |
2e7e3122260d7ad026bcb893fd508f22dd94fb9265ecb7350912c45a3350ec9b
|
File details
Details for the file swecc_email_sender-1.0.7-py3-none-any.whl.
File metadata
- Download URL: swecc_email_sender-1.0.7-py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
edfb45de3353ac66e3c3702b21062aa8866e3a2e66e308d1989f5f84c7c774cd
|
|
| MD5 |
9e0868a00ad756004e4fc6f7ffe64da2
|
|
| BLAKE2b-256 |
41d1a35fb9a243949ac8d873bb98965c19f9fb50123716109fdc1430945a3460
|