What do you want to automate

with Alibaba Cloud and Email?

Prompt, edit and deploy AI agents that connect to Alibaba Cloud, 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 Alibaba Cloud API with the Email API
Setup the Alibaba Cloud API trigger to run a workflow which integrates with the Email API. Pipedream's integration platform allows you to integrate Alibaba Cloud and Email remarkably fast. Free for developers.

Connect Alibaba Cloud

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 Ecs20140526, * as $Ecs20140526 from '@alicloud/ecs20140526';
import OpenApi, * as $OpenApi from '@alicloud/openapi-client';
import Util, * as $Util from '@alicloud/tea-util';

export default defineComponent({
  props: {
    alibaba_cloud: {
      type: "app",
      app: "alibaba_cloud",
    }
  },
  async run({ steps, $ }) {
    //Creates a new Alibaba Cloud SDK client
    let config = new OpenApi.Config({
      accessKeyId: this.alibaba_cloud.$auth.access_key_id,
      accessKeySecret: this.alibaba_cloud.$auth.access_key_secret,
    });
    config.endpoint = this.alibaba_cloud.$auth.endpoint;

    //Creates and executes a request
    let client = new Ecs20140526.default(config);
    let describeRegionsRequest = new $Ecs20140526.DescribeRegionsRequest({});
    let runtime = new $Util.RuntimeOptions({});
    return await client.describeRegionsWithOptions(describeRegionsRequest, runtime);
  },
})

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