Mailersend

Transactional email service that delivers

Integrate the Mailersend API with the Airtable (OAuth) API

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

Create Comment with Airtable API on New Click Activity (Instant) from Mailersend API
Mailersend + Airtable (OAuth)
 
Try it
Create Comment with Airtable API on New Email Is Delivered (Instant) from Mailersend API
Mailersend + Airtable (OAuth)
 
Try it
Create Comment with Airtable API on New Email Is Hard Bounced (Instant) from Mailersend API
Mailersend + Airtable (OAuth)
 
Try it
Create Comment with Airtable API on New Email Is Opened (Instant) from Mailersend API
Mailersend + Airtable (OAuth)
 
Try it
Create Comment with Airtable API on New Email Is Sent (Instant) from Mailersend API
Mailersend + Airtable (OAuth)
 
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
Create Comment with the Airtable (OAuth) API

Create a new comment on a record. See the documentation

 
Try it
Create Field with the Airtable (OAuth) API

Create a new field in a table. See the documentation

 
Try it
Create Multiple Records with the Airtable (OAuth) API

Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. See the documentation

 
Try it
Create Single Record with the Airtable (OAuth) API

Adds a record to a table.

 
Try it
Create Single Record Or Update with the Airtable (OAuth) API

Updates a record if recordId is provided or adds a record to a table.

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

Overview of Airtable (OAuth)

Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.

Connect Airtable (OAuth)

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: {
    airtable_oauth: {
      type: "app",
      app: "airtable_oauth",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.airtable.com/v0/meta/whoami`,
      headers: {
        Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
      },
    })
  },
})