Amazon SES

Simple Email Service

Integrate the Amazon SES API with the Zoom Admin API

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

Create Email Template with Amazon SES API on Account Created from Zoom Admin API
Zoom Admin + Amazon SES
 
Try it
Get Email Template with Amazon SES API on Account Created from Zoom Admin API
Zoom Admin + Amazon SES
 
Try it
Send Email with Amazon SES API on Account Created from Zoom Admin API
Zoom Admin + Amazon SES
 
Try it
Send Templated Email with Amazon SES API on Account Created from Zoom Admin API
Zoom Admin + Amazon SES
 
Try it
Update Email Template with Amazon SES API on Account Created from Zoom Admin API
Zoom Admin + Amazon SES
 
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
Custom Events from the Zoom Admin API

Listen for any events tied to your Zoom account

 
Try it
Meeting Started from the Zoom Admin API

Emits an event each time a meeting starts in your Zoom account

 
Try it
Account Updated from the Zoom Admin API

Emits an event each time your master account or sub-account profile is updated

 
Try it
Recording Completed from the Zoom Admin API

Emits an event each time a recording is ready for viewing in your Zoom account

 
Try it
Create Email Template with the Amazon SES API

Create a HTML or a plain text email template. See the docs

 
Try it
Get Email Template with the Amazon SES API

Get an email template. See the docs

 
Try it
Send Email with the Amazon SES API

Send an email using Amazon SES. Supports simple email messaging. See the docs

 
Try it
Send Templated Email with the Amazon SES API

Send an email replacing the template tags with values using Amazon SES. See the docs

 
Try it
Update Email Template with the Amazon SES API

Update an email template. See the docs

 
Try it

Overview of Amazon SES

With Amazon SES, you can easily send email from your applications. Amazon SES
eliminates the complexity and headaches of managing outgoing email
infrastructure by providing a scalable, pay-as-you-go email sending service.
Amazon SES makes it easy to get started sending email from your applications,
with no upfront costs or long-term commitments.

Here are some examples of what you can build with the Amazon SES API:

  • A system that automatically sends emails to customers when their orders are
    ready
  • A system that notifies customers when their bills are due
  • A system that sends out weekly newsletters to subscribers
  • A system that sends out targeted marketing emails to potential customers

Connect Amazon SES

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
module.exports = defineComponent({
  props: {
    amazon_ses: {
      type: "app",
      app: "amazon_ses",
    }
  },
  async run({steps, $}) {
    const AWS = require("aws-sdk")
    const { accessKeyId, secretAccessKey } = this.amazon_ses.$auth
    
    const ses = new AWS.SES({
      accessKeyId, 
      secretAccessKey,
      region: 'us-east-1',
    })
    
    const sesParams = {
      Destination: {
        ToAddresses: ["<your email here>"],
      }, 
      Message: {
        Body: {
          Html: {
            Charset: "UTF-8", 
            Data: "<h1>This is a test</h1>",
          }, 
            Text: {
            Charset: "UTF-8", 
            Data: "This is a test",
          }
        }, 
        Subject: {
          Charset: "UTF-8", 
          Data: "Test email",
        }
      },
      Source: "<your from address here", 
    };
    
    this.resp = await ses.sendEmail(sesParams).promise()
  },
})

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