Postministeriet is a service for sending email, built around simplicity and privacy.
A minimal api for sending email.
Built and hosted in Sweden.
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" }
}'