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.
Creates a new company or replaces an existing one using a given identifier. See the documentation
Establishes or modifies a relationship with the given user and company identifiers. See the documentation
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
The Userlist API offers a way to manage and engage with your application's user base through targeted messaging and campaigns. In Pipedream, you can leverage this API to automate user segmentation, push personalized messages, and track events to create a refined user experience. When you integrate Userlist with other apps on Pipedream, you unlock a powerful suite of functionalities for syncing user data, triggering personalized communication, and responding to user actions in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
userlist: {
type: "app",
app: "userlist",
}
},
async run({steps, $}) {
const data = {
"email": `john@doe.com`,
}
return await axios($, {
method: "post",
url: `https://push.userlist.com/users`,
headers: {
"Authorization": `Push ${this.userlist.$auth.push_key}`,
"Content-Type": `application/json`,
},
data,
})
},
})