The MailerSend API integrates with Pipedream to create powerful email automation workflows, enabling you to send transactional emails, create and manage templates, and track email activities like opens or clicks. With these capabilities, you can automate routine communications, personalize mass mailings based on user actions or data, and gain insights into your email campaign performances, all within the context of a serverless Pipedream workflow.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mailersend: {
type: "app",
app: "mailersend",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.mailersend.com/v1/domains`,
headers: {
Authorization: `Bearer ${this.mailersend.$auth.api_token}`,
},
})
},
})
Transactional Email on New User Sign-Up: Trigger an email with a welcome message and onboarding instructions using MailerSend whenever a new user signs up on your platform. You can capture the sign-up event from your app's API, a database like MySQL, or a service like Auth0, and use that to trigger the workflow on Pipedream.
Dynamic Content for Cart Abandonment Emails: Connect MailerSend with an e-commerce platform such as Shopify. Monitor cart status and send customized reminder emails with dynamic content, such as cart items and a checkout link, when a user abandons their shopping cart.
Email Campaign Performance Reporting: After sending out a campaign via MailerSend, use Pipedream to connect to analytics apps like Google Sheets or Data Studio. Automatically log data on email opens, clicks, and bounces, and generate performance reports to measure and improve your email marketing strategies.
Emit new event when the recipient clicks a link in your email. See the documentation
Emit new event when your email is successfully delivered with no errors. See the documentation
Emit new event when your email is not delivered. See the documentation
Emit new event when the recipient receives your email and opens it. See the documentation
Emit new event when your email is sent from the sending servers. See the documentation
This action sends a personalized e-mail to the specified recipient. See the documentation
This action sends a personalized e-mail to the specified recipient using templates. See the documentation
Mailersend uses API keys for authentication. When you connect your Mailersend account, Pipedream securely stores the keys so you can easily authenticate to Mailersend APIs in both code and no-code steps.
API tokens are generated for sending domains and can have different permissions to limit which areas of your account they may be used to access. See docs.