Mailersend

Transactional email service that delivers

Integrate the Mailersend API with the Zoom Admin API

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

Send an Email with Mailersend API on Account Created from Zoom Admin API
Zoom Admin + Mailersend
 
Try it
Send Email From Template with Mailersend API on Account Created from Zoom Admin API
Zoom Admin + Mailersend
 
Try it
Send an Email with Mailersend API on Custom Events from Zoom Admin API
Zoom Admin + Mailersend
 
Try it
Send an Email with Mailersend API on Meeting Started from Zoom Admin API
Zoom Admin + Mailersend
 
Try it
Send Email From Template with Mailersend API on Custom Events from Zoom Admin API
Zoom Admin + Mailersend
 
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
Account Created from the Zoom Admin API

Emits an event each time a sub-account is created in your master account

 
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
Custom Events from the Zoom Admin API

Listen for any events tied to your Zoom account

 
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
Send an Email with the Mailersend API

This action sends a personalized e-mail to the specified recipient. See the documentation

 
Try it
Send Email From Template with the Mailersend API

This action sends a personalized e-mail to the specified recipient using templates. See the documentation

 
Try it
Add meeting registrant with the Zoom Admin API

Register a participant for a meeting. See the docs here

 
Try it
Add webinar panelist with the Zoom Admin API

Register a panelist for a webinar. See the docs here

 
Try it
Add webinar registrant with the Zoom Admin API

Register a participant for a webinar. See the docs here

 
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 Zoom Admin

The Zoom Admin API lets you harness the extensive capabilities of Zoom for automation and integration, right within Pipedream. Automate user management, track Zoom rooms, monitor webinars and meetings, and customize your workflow to respond dynamically to events like new participants or ended meetings. With these APIs and the power of Pipedream, you can streamline administrative tasks, extract valuable insights, and sync Zoom activities with other services.

Connect Zoom Admin

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: {
    zoom_admin: {
      type: "app",
      app: "zoom_admin",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.zoom.us/v2/users/me`,
      headers: {
        Authorization: `Bearer ${this.zoom_admin.$auth.oauth_access_token}`,
      },
    })
  },
})