Trigger workflows on an interval or cron schedule.
Emit new event when an email is opened by a recipient (See docs here)
Emit new event when an email is received by the Postmark server (See docs here)
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Send a single email with Postmark using a template (See docs here)
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:
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.
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:
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`,
},
})
},
})