Prerequisites

Before you start, ensure you have:
  • A Lettermint account (sign up here if needed)
  • A verified sending domain
  • Your API token from the Lettermint dashboard

Step 1: Get Your API token

  1. Log into your Lettermint dashboard
  2. Navigate to Projects[Your Project]API token
  3. Copy your API token (keep this secure)

Step 2: Send Your First Email

Choose your preferred method:
    curl -X "POST" "https://api.lettermint.co/v1/send" \
    -H 'Content-Type: application/json' \
    -H 'x-lettermint-token: <your_api_token>' \
    -H 'Accept: application/json' \
    -d $'{
        "text": "This is my first ever email sent via Lettermint.",
        "subject": "Hello world!",
        "to": [
        "ok@testing.lettermint.co"
        ],
        "from": "Bob <bob@lettermint.co>"
    }'
Lettermint does not have a rate limit on its sending API. This way, you literally do not have to care about anything other than sending email.

Step 3: Check your emails

Go to the Emails overview in your dashboard and voilà, your first email should be delivered.

Next Steps

Now that you’ve sent your first email: Need help? Create a support ticket in your dashboard support page or check the API Reference for detailed endpoint documentation.