Formatting

Pre-built actions to make formatting and manipulating data within your workflows easier.

Integrate the Formatting API with the Email API

Setup the Formatting API trigger to run a workflow which integrates with the Email API. Pipedream's integration platform allows you to integrate Formatting and Email 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
[Data] Parse JSON with the Formatting API

Parse a JSON 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
[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 Formatting

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

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