Official Python client for the SuperSend TX transactional email API.
pip install supersendtxfrom supersendtx import SuperSendTX
tx = SuperSendTX("stx_your_key_here")
result = tx.emails.send(
from_="you@yourdomain.com",
to="user@example.com",
subject="Hello",
html="<p>It works.</p>",
)
print(result["id"], result["status"])pip install 'supersendtx[django]'EMAIL_BACKEND = "supersendtx.django.EmailBackend"
# SUPERSENDTX_API_KEY in the environment