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.
List all the uploaded files and folders in your ImageKit.io media library. See the documentation
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
ImageKit.io API lets you manage, optimize, and deliver images dynamically for your web applications. On Pipedream, you can integrate this API to construct serverless workflows that automate your image operations and connect with other services. You can upload images from various sources, apply real-time transformations, and track media assets without managing infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
imagekit_io: {
type: "app",
app: "imagekit_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.imagekit.io/v1/files`,
auth: {
username: `${this.imagekit_io.$auth.private_key}`,
password: ``,
},
})
},
})