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.
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
The GorillaStack API enables automation and integration of cloud cost management and optimization tools. With GorillaStack, you can automate real-time actions, get insights into your cloud usage, and set up rules to control cloud costs. Using this API within Pipedream, you can create powerful serverless workflows that respond to various triggers and perform actions like shutting down unused resources, notifying teams about cost spikes, or adjusting resources based on load.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gorillastack: {
type: "app",
app: "gorillastack",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.gorillastack.com/v2/teams/${this.gorillastack.$auth.team_id}/users`,
headers: {
Authorization: `Bearer ${this.gorillastack.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})