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 0codekit API offers a suite of tools aimed at improving development processes by providing services like code generation, data conversion, and other utility functions. In Pipedream, you can leverage this API to automate repetitive coding tasks, convert data formats on-the-fly, or integrate seamless code-generation features into your workflows. By harnessing the power of 0codekit within Pipedream's serverless platform, you can build efficient, scalable, and automated solutions that react to various triggers and interact with many apps.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
_0codekit: {
type: "app",
app: "_0codekit",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://v2.1saas.co/1saas/auth`,
headers: {
"auth": `${this._0codekit.$auth.api_key}`,
},
})
},
})