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 UpLead API provides access to a robust database of B2B contacts and companies, enabling users to enrich leads with detailed information like email addresses, phone numbers, company details, and more. Within Pipedream, you can integrate the UpLead API to automate lead enrichment, sync lead data with other tools, and build custom workflows that leverage UpLead's data for sales intelligence, marketing campaigns, and CRM data enhancement.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
uplead: {
type: "app",
app: "uplead",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.uplead.com/v2/credits`,
headers: {
"Authorization": `${this.uplead.$auth.api_key}`,
},
})
},
})