Getting Started with TrackPost Email API
Table of Contents
Welcome to TrackPost! This guide will help you send your first transactional email in under 5 minutes.
What You’ll Need
- A TrackPost account
- Your API key (test or live)
- A verified sender email address
Quick Start
Here’s the simplest way to send an email:
curl -X POST https://api.trackpost.de/v1/send-email \
-H "Authorization: Bearer tp_test_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"to": "[email protected]",
"from": "[email protected]",
"subject": "Hello from TrackPost!",
"html": "<h1>Welcome!</h1>"
}'
What’s Next?
- Explore email templates
- Set up webhook notifications
- Monitor your email analytics
Happy sending! 📧