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.
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
The Northflank API offers a range of functionality for managing and automating deployment workflows, handling various aspects from creating and managing services to scaling and monitoring applications. On Pipedream, you can use this API to create seamless automation that connects your deployment processes with other services and tools, crafting custom continuous deployment pipelines, generating real-time alerts, or automating service scaling based on specific triggers.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
northflank: {
type: "app",
app: "northflank",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.northflank.com/v1/projects`,
headers: {
Authorization: `Bearer ${this.northflank.$auth.api_token}`,
},
})
},
})