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 UrlBae API lets you shorten URLs, making them easier to share and manage. You can generate compact links, track clicks, and gather data on link engagement within your workflows on Pipedream. By leveraging UrlBae in Pipedream, you can automate the process of creating, distributing, and analyzing short links across various platforms, enhancing both marketing efforts and user experience.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
urlbae: {
type: "app",
app: "urlbae",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://urlbae.com/api/account`,
headers: {
Authorization: `Bearer ${this.urlbae.$auth.api_key}`,
},
})
},
})