Postministeriet Logo

A Swedish email api
for modern applications

Postministeriet is a service for sending email, built around simplicity and privacy.

⚡ Simple

A minimal api for sending email.

Swedish

Built and hosted in Sweden.

📊 Affordable

Sending email should not cost a fortune.

An example of how the api is used:

curl -X POST https://api.postministeriet.se/api/message \
  -H "X-Api-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "recipients": ["recipient@example.com"],
    "sender": "no-reply@yourdomain.com",
    "sender_name": "Your Domain",
    "subject": "Hello and welcome!",
    "template_name": "welcome",
    "data": { "name": "Anna" }
  }'