Trigger workflows on new emails, and send emails to yourself as part of a Pipedream workflow.
Get a unique address where you can send emails to trigger your workflow.
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
Create a membership for a consortia in Kaleido. See the documentation
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
Kaleido provides an API for creating and managing blockchain networks and services. By integrating with Pipedream, you can automate various blockchain tasks such as deploying smart contracts, managing consortia, and handling tokens without managing infrastructure. Pipedream's serverless platform enables you to connect Kaleido with hundreds of other apps to create powerful and scalable workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
kaleido: {
type: "app",
app: "kaleido",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.kaleido.$auth.endpoint}.kaleido.io/api/v1/orgs`,
headers: {
Authorization: `Bearer ${this.kaleido.$auth.api_keys}`,
},
})
},
})