Postmark is a fast and reliable email delivery service that enables you to send transactional and marketing emails and get them to the inbox on time, every time.
Go to siteThe 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.
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.server_api_token}`,
"Accept": `application/json`,
},
})
},
})
Customer Support Ticket Acknowledgement: When a new support ticket is created in your helpdesk software (e.g., Zendesk), trigger a workflow in Pipedream to send a confirmation email via Postmark, ensuring the customer receives an immediate and reliable acknowledgement of their query.
Transactional Email for E-commerce: After a new order is placed in an e-commerce platform like Shopify, use Pipedream to trigger an order confirmation email through Postmark. Include details such as order summary, shipment tracking, and expected delivery date to enhance customer experience.
User Behavior-Triggered Emails: Combine Postmark with a CRM platform like HubSpot on Pipedream to send personalized emails based on user behavior. For instance, if a user signs up for a webinar or downloads a whitepaper, automatically send them a curated follow-up email sequence, improving engagement and conversion.
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. This source updates the server's inbound URL. You cannot create multiple inbound sources for the same server. See the documentation
Delete a specific sender signature. See the documentation
Gets total counts of emails you've sent out that have been returned as bounced. See the documentation
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.
Log in to your Postmark account, and you can find your Server and Account API Tokens in your account settings.