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 Frontegg API provides a suite of functionalities centered around user management, authentication, and security. It simplifies the integration of these essential features into any application. On Pipedream, you can tap into Frontegg's capabilities to automate and enhance user experience by crafting workflows that respond to events, manage user data, and enforce security protocols.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
frontegg: {
type: "app",
app: "frontegg",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.frontegg.$auth.geo_location}.frontegg.com/identity/resources/configurations/v1`,
headers: {
Authorization: `Bearer ${this.frontegg.$auth.oauth_access_token}`,
},
})
},
})