What do you want to automate

with Payrexx and Email?

Prompt, edit and deploy AI agents that connect to Payrexx, Email and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
New Email from the Email API

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

 
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
Integrate the Payrexx API with the Email API
Setup the Payrexx API trigger to run a workflow which integrates with the Email API. Pipedream's integration platform allows you to integrate Payrexx and Email remarkably fast. Free for developers.

Connect Payrexx

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
import { axios } from "@pipedream/platform";
import crypto from "crypto";

export default defineComponent({
  props: {
    payrexx: {
      type: "app",
      app: "payrexx",
    }
  },
  async run({ steps, $ }) {
		const INSTANCE_NAME = this.payrexx.$auth.instance_name;
    const INSTANCE_API_SECRET = this.payrexx.$auth.api_key;

    const apiSignature = crypto
      .createHmac("sha256", INSTANCE_API_SECRET)
      .update("")
      .digest("base64")

    return await axios($, {
      url: "https://api.payrexx.com/v1.0/PaymentProvider/",
      method: "GET",
      params: {
        instance: INSTANCE_NAME,
        ApiSignature: apiSignature
      }
    })
  },
})

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

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo