Official Posthawk SDK for sending emails
Project description
Posthawk Python SDK
The official Python SDK for Posthawk — send transactional emails, schedule deliveries, and manage email jobs.
Install
pip install posthawk
Quick Start
from posthawk import Posthawk
client = Posthawk("ck_live_...")
result = client.emails.send(
from_email="hi@yourdomain.com",
to="user@example.com",
subject="Hello from Posthawk",
html="<h1>Welcome!</h1><p>Your account is ready.</p>",
)
if result.error:
print(result.error.message)
else:
print(f"Sent! Job ID: {result.data.job_id}")
Send Email
result = client.emails.send(
from_email="hi@yourdomain.com",
to=["alice@example.com", "bob@example.com"],
cc="manager@example.com",
subject="Weekly Report",
html="<h1>Report</h1>",
text="Plain text fallback",
headers={"X-Custom": "value"},
metadata={"campaign": "onboarding"},
tags={"type": "transactional"},
)
Schedule Emails
from datetime import datetime, timedelta, timezone
result = client.emails.send(
from_email="hi@yourdomain.com",
to="user@example.com",
subject="Reminder",
text="Don't forget your appointment tomorrow!",
scheduled_for=datetime.now(timezone.utc) + timedelta(hours=24),
)
print(f"Scheduled for: {result.data.scheduled_for}")
Check Delivery Status
result = client.emails.get("job-id-here")
if not result.error:
print(f"Status: {result.data.status}")
# pending | processing | completed | failed
Manage Scheduled Emails
# List all scheduled emails
result = client.scheduled.list(status="scheduled", limit=10)
for email in result.data.data:
print(f"{email.subject} → {email.scheduled_for}")
# Get a specific scheduled email
result = client.scheduled.get("scheduled-email-id")
# Cancel before it sends
result = client.scheduled.cancel("scheduled-email-id")
# Reschedule to a new time
result = client.scheduled.reschedule(
"scheduled-email-id",
scheduled_for="2026-04-01T10:00:00Z",
)
Self-Hosted
Point the SDK at your own Posthawk instance:
client = Posthawk("ck_live_...", base_url="https://api.yourdomain.com")
Error Handling
SDK methods never raise exceptions for API errors. Every method returns a PosthawkResponse with .data and .error:
result = client.emails.send(
from_email="hi@yourdomain.com",
to="user@example.com",
subject="Test",
html="<p>Hello</p>",
)
if result.error:
print(f"Error {result.error.status_code}: {result.error.message}")
else:
print(f"Success: {result.data.job_id}")
Context Manager
Use a context manager to automatically close the HTTP connection pool:
with Posthawk("ck_live_...") as client:
result = client.emails.send(
from_email="hi@yourdomain.com",
to="user@example.com",
subject="Hello",
html="<h1>Hi</h1>",
)
API Reference
| Method | Description |
|---|---|
client.emails.send(...) |
Send an email or schedule one |
client.emails.get(job_id) |
Check delivery status |
client.scheduled.list(...) |
List scheduled emails |
client.scheduled.get(id) |
Get a scheduled email |
client.scheduled.cancel(id) |
Cancel a scheduled email |
client.scheduled.reschedule(id, ...) |
Reschedule an email |
License
MIT
Project details
Release history Release notifications | RSS feed
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 posthawk-0.2.0.tar.gz.
File metadata
- Download URL: posthawk-0.2.0.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
779bca5eda4b92e38d4b25116923f99ffa39b5bf98fc6f5ad627be21ed013b9d
|
|
| MD5 |
ee107525d4e7ad50a57df143b3bc1a19
|
|
| BLAKE2b-256 |
db680433b348e014f7de359425a6ca4c30c8976aca85ea738956b2a410f2525b
|
File details
Details for the file posthawk-0.2.0-py3-none-any.whl.
File metadata
- Download URL: posthawk-0.2.0-py3-none-any.whl
- Upload date:
- Size: 11.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b295818d7240523e13d69f502caed171a488dad9d5dc2c1d431b5f5f55cbfce8
|
|
| MD5 |
923c7f223dc03db129dba3ec08f28b55
|
|
| BLAKE2b-256 |
69c44b3a4f7cbb58c66eda15906db0ed26a1734bdb2d4cb288b5ef301b93474c
|