Email

Trigger workflows on new emails, and send emails to yourself as part of a Pipedream workflow.

Integrate the Email API with the Formatting API

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

[Data] Convert JSON to String with Formatting API on New Email from Email API
Email + Formatting
 
Try it
[Data] Parse JSON with Formatting API on New Email from Email API
Email + Formatting
 
Try it
[Date/Time] Add/Subtract Time with Formatting API on New Email from Email API
Email + Formatting
 
Try it
[Date/Time] Compare Dates with Formatting API on New Email from Email API
Email + Formatting
 
Try it
[Date/Time] Format with Formatting API on New Email from Email API
Email + Formatting
 
Try it
New Email from the Email API

Get a unique address where you can send emails to trigger your workflow.

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

Convert an object to a JSON format string

 
Try it
Send Yourself an Email with the Email API

Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.

 
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
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it

Connect Email

1
2
3
4
5
6
7
8
9
export default defineComponent({
  async run({ $ }) {
    const options = {
      subject: 'Your subject here',
      text: 'Your text here'
    };
    $.send.email(options);
  },
});

Connect Formatting

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