Postmark

Application Email Service with Exceptional Delivery

Go to site
Explore
/
Apps
/
Postmark

Postmark API Integrations

Build and run workflows using the Postmark API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

What Is the Postmark API?

The Postmark API enables developers to easily integrate programmatic emailing into their applications. With the API, developers can create, send, and track transactional emails that are designed to enhance user experience and user engagement. The API also provides developers with access to powerful analytics and insights, such as open/click rates, spam complaints, bounces, and unsubscribes.

What Can You Build With the Postmark API?

The Postmark API allows developers to easily incorporate automated email notifications into their applications. Some examples of what you can build using the API are:

  • Welcome emails
  • Password reset emails
  • Email verification reminders
  • Event notification emails
  • Automated transactional emails
  • Billing and invoicing emails
  • Receipt emails
  • Email newsletters
  • Auto-responders and more!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    postmark: {
      type: "app",
      app: "postmark",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.postmarkapp.com/server`,
      headers: {
        "X-Postmark-Server-Token": `${this.postmark.$auth.api_key}`,
        "Accept": `application/json`,
      },
    })
  },
})
Send an Email with Postmark to a Single Recipient with Postmark API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Postmark
 
Try it
Send Message (Advanced) with Discord Webhook API on New Email Opened from Postmark API
Postmark + Discord Webhook
 
Try it
Add Multiple Rows with Google Sheets API on New Email Opened from Postmark API
Postmark + Google Sheets
 
Try it
Send an Email with Postmark to a Single Recipient with Postmark API on New Item in Feed from RSS API
RSS + Postmark
 
Try it
Send an Email with Postmark to a Single Recipient with Postmark API on New Message from Discord API
Discord + Postmark
 
Try it
New Email Opened from the Postmark API

Emit new event when an email is opened by a recipient (See docs here)

 
Try it
New Inbound Email Received from the Postmark API

Emit new event when an email is received by the Postmark server (See docs here)

 
Try it
Send Email With Template with the Postmark API

Send a single email with Postmark using a template (See docs here)

 
Try it
Send Single Email with the Postmark API

Send a single email with Postmark (See docs here)

 
Try it

Authentication

Postmark uses API keys for authentication. When you connect your Postmark account, Pipedream securely stores the keys so you can easily authenticate to Postmark APIs in both code and no-code steps.