Introduction
Welcome to the Postject API. Postject is the simplest way to send highly reliable transactional emails. Whether you are building a small side project, testing an API, or sending millions of alerts, Postject focuses entirely on raw delivery speed and developer experience.
Why Postject?
The email industry is crowded with heavy, bloated marketing suites. Postject provides a razor-thin, highly concurrent API wrapper around global SMTP networks, allowing developers to trigger communications effortlessly.
- Zero Setup: Send immediately from a hosted subdomain while you verify your own.
- API-First: A JSON-perfect REST API.
- Utilitarian Logs: No tracking pixels by default. Just raw delivery status events.
Quick Start
Don't want to read the docs? Just generate an API Key in the dashboard and fire a payload:
bash
curl -X POST https://api.postject.com/v1/send \
-H "Authorization: Bearer pt_live_xxxxxxxxxxxxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{
"to": "user@example.com",
"subject": "Hello from Postject",
"html": "<p>This is a test email.</p>"
}'