Getting Started with TrackPost Email API

  • November 5, 2025
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! 📧

Share :
comments powered by Disqus

Related Posts

What You Really Pay for Transactional Email

What You Really Pay for Transactional Email (And Why BYO SES Quietly Wins on Cost) A while ago, I was helping a team that sent a decent amount of transactional email : not millions, but enough that the monthly bill wasn’t trivial anymore. Something like 150k to 250k emails a month. Classic SaaS stuff: signups, verifications, invoices, password resets. The boring but critical pipes.

Read More