Sending emails will be enabled again in few days

I apologize for the inconvenience, this is important to prevent being suspended by AWS SES again due to spammer activity. Thank you for your support.


Petr,

The founder of IndiePitcher

Everything email for your startup with markdown support

Everything email for your startup with markdown support

Everything email for your startup with markdown support

IndiePitcher is a complete solution for sending marketing + transactional emails, and management of your contact list with their subscription preferences.

Start for free

Built for developers

Built for developers

Send a simple email

curl --request POST \
  --url https://api.indiepitcher.com/v1/email/transactional \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "to": "john@acme.com",
  "subject": "You'\''ve been invited to IndiePitcher",
  "body": "You can use **markdown** to generate the email. Plain HTML is also supported.",
  "bodyFormat": "markdown"
}'

Manage contacts

curl --request POST \
  --url https://api.indiepitcher.com/v1/contacts/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "john@acme.com",
  "name": "John Doe",
  "updateIfExists": true,
  "subscribedToLists": [
    "onboarding",
    "newsletter"
  ],
  "customProperties": {
    "company": "Acme",
    "age": 35
  }
}'

Send personalized emails to contacts(s)

curl --request POST \
  --url https://api.indiepitcher.com/v1/email/contact \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "contactEmail": "john@acme.com",
  "subject": "Welcome to IndiePitcher {{firstName}}!",
  "body": "Hi {{firstName}}, You can use **markdown** to generate the email. Plain HTML is also supported.",
  "bodyFormat": "markdown",
  "list": "onboarding",
  "delaySeconds": 300
}'

And much more…

Read the docs

Sign up for free.

Sign up for free.

Sign up for free.

Featured on Startup Fame