Amazon SES

Simple Email Service

Integrate the Amazon SES API with the Airtable (OAuth) API

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

Create Email Template with Amazon SES API on New Field from Airtable API
Airtable (OAuth) + Amazon SES
 
Try it
Create Email Template with Amazon SES API on New Modified or Deleted Records (Instant) from Airtable (OAuth) API
Airtable (OAuth) + Amazon SES
 
Try it
Create Email Template with Amazon SES API on New or Modified Field from Airtable API
Airtable (OAuth) + Amazon SES
 
Try it
Create Email Template with Amazon SES API on New or Modified Records from Airtable API
Airtable (OAuth) + Amazon SES
 
Try it
Create Email Template with Amazon SES API on New or Modified Records in View from Airtable API
Airtable (OAuth) + Amazon SES
 
Try it
New Field from the Airtable (OAuth) API

Emit new event for each new field created in a table

 
Try it
New Modified or Deleted Records (Instant) from the Airtable (OAuth) API

Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation

 
Try it
New or Modified Field from the Airtable (OAuth) API

Emit new event for each new or modified field in a table

 
Try it
New or Modified Records from the Airtable (OAuth) API

Emit new event for each new or modified record in a table

 
Try it
New or Modified Records in View from the Airtable (OAuth) API

Emit new event for each new or modified record in a view

 
Try it
Create Email Template with the Amazon SES API

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

 
Try it
Create Comment with the Airtable (OAuth) API

Create a new comment on a record. See the documentation

 
Try it
Get Email Template with the Amazon SES API

Get an email template. See the docs

 
Try it
Create Field with the Airtable (OAuth) API

Create a new field in a table. See the documentation

 
Try it
Send Email with the Amazon SES API

Send an email using Amazon SES. Supports simple email messaging. 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()
  },
})

Overview of Airtable (OAuth)

Using the Airtable API, you can build applications that can:

  • Create and manage databases
  • Add, update, and delete records
  • Search for records
  • Sort and filter records
  • Display records in a variety of ways
  • Import and export data

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