Mailersend

Transactional email service that delivers

Integrate the Mailersend API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on New Click Activity (Instant) from Mailersend API
Mailersend + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Email Is Delivered (Instant) from Mailersend API
Mailersend + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Email Is Hard Bounced (Instant) from Mailersend API
Mailersend + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Email Is Opened (Instant) from Mailersend API
Mailersend + Formatting
 
Try it
[Data] Convert JSON to String with Formatting API on New Email Is Sent (Instant) from Mailersend API
Mailersend + Formatting
 
Try it
New Click Activity (Instant) from the Mailersend API

Emit new event when the recipient clicks a link in your email. See the documentation

 
Try it
New Email Is Delivered (Instant) from the Mailersend API

Emit new event when your email is successfully delivered with no errors. See the documentation

 
Try it
New Email Is Hard Bounced (Instant) from the Mailersend API

Emit new event when your email is not delivered. See the documentation

 
Try it
New Email Is Opened (Instant) from the Mailersend API

Emit new event when the recipient receives your email and opens it. See the documentation

 
Try it
New Email Is Sent (Instant) from the Mailersend API

Emit new event when your email is sent from the sending servers. See the documentation

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of Mailersend

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.

Connect Mailersend

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})