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 UserSketch API lets you pull user details like names, emails, locations, and job titles, to create realistic user personas for your apps or services. Integrating the UserSketch API with Pipedream unlocks the potential to automate the creation of these personas, enrich CRM data, or enhance user testing with minimal effort. Pipedream's serverless platform facilitates the creation of complex workflows, connecting UserSketch with a vast array of other apps and services to streamline your processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
usersketch: {
type: "app",
app: "usersketch",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.usersketch.com/api/customers`,
headers: {
"accept": `application/json`,
"x-api-key": `${this.usersketch.$auth.api_key}`,
},
})
},
})