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.
Add a new contact in your particular campaign. See the documentation
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);
},
});
UpViral is a platform designed to create and run referral campaigns with ease. With the UpViral API, you can automate the collection of lead data, manage contests, and track the performance of your campaigns directly within Pipedream. This allows for a seamless integration of viral marketing efforts into your existing business processes. By leveraging the API, you can trigger actions in other apps based on campaign results, synchronize lead data with CRM systems, and even automate the distribution of rewards to contest winners.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
upviral: {
type: "app",
app: "upviral",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://app.upviral.com/api/v1`,
params: {
uvapikey: `${this.upviral.$auth.api_key}`,
uvmethod: `lists`,
},
})
},
})