Resend

Email API for developers

Integrate the Resend API with the Formatting API

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

Retrieve Email with the Resend API

Retrieve a single email See the documentation

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

Convert an object to a JSON format string

 
Try it
Send Email with the Resend API

Send an email See the documentation

 
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

Overview of Resend

The Resend API opens a direct line to powerful communication automation, letting you send, receive, and track messages across various channels like SMS and email. In Pipedream, Resend's capabilities can be harnessed within serverless workflows, allowing for dynamic interactions based on triggers from a multitude of integrated services. From confirmation messages to multi-step notification sequences, you can craft tailored communication flows that react in real-time to your application or service's needs.

Connect Resend

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
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    resend: {
      type: "app",
      app: "resend",
    }
  },
  async run({steps, $}) {
    const data = {
      "from": `onboarding@resend.dev`,
      "to": `user@example.com`,
      "subject": `pipedream testing`,
      "text": `it works!`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.resend.com/email`,
      headers: {
        Authorization: `Bearer ${this.resend.$auth.api_key}`,
        "Content-Type": `application/json`,
      },
      data,
    })
  },
})

Connect Formatting

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