Schedule

Trigger workflows on an interval or cron schedule.

Integrate the Schedule API with the Postmark API

Setup the Schedule API trigger to run a workflow which integrates with the Postmark API. Pipedream's integration platform allows you to integrate Schedule and Postmark remarkably fast. Free for developers.

Send an Email with Postmark to a Single Recipient with Postmark API on Daily schedule from Schedule API
Schedule + Postmark
 
Try it
Send an Email with Postmark to a Single Recipient with Postmark API on Monthly schedule from Schedule API
Schedule + Postmark
 
Try it
Send an Email with Postmark to a Single Recipient with Postmark API on Schedule based on a custom interval from Schedule API
Schedule + Postmark
 
Try it
Send an Email with Postmark to a Single Recipient with Postmark API on Weekly schedule from Schedule API
Schedule + Postmark
 
Try it
Send Email With Template with Postmark API on Custom Interval from Schedule API
Schedule + Postmark
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
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
Daily schedule from the Schedule API

Trigger your workflow every day.

 
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
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
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

Overview of Schedule

With Schedule - A trigger provided by Pipedream - You can easily build
automated workflows that run on regular times or intervals. Some examples of
things that you can build using the Schedule API include:

  • Automated data retrieval from a third-party service, like pulling stats from
    your Salesforce account on a set schedule.
  • Uploading new data sets to a database with a predetermined interval.
  • Automatic emails to customers or leads at a certain time of the day.
  • Automating data analysis based on a set schedule.
  • Automatically optimizing social media postings according to a specified
    timeline.
  • Updating webpages at a certain interval with newly available content.
  • Re-running reports on a periodic basis.
  • Refreshing a cache of data at a given frequency.

Overview of Postmark

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!

Connect Postmark

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`,
      },
    })
  },
})