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 Hyros API offers the ability to track and analyze customer interactions across various marketing channels, aiming to improve ad tracking and ROI. Integrated within Pipedream, it allows for the automation of data collection, real-time analytics, and operational workflows. By leveraging Pipedream's serverless platform, developers can create workflows that respond to events from Hyros, trigger actions based on data insights, or synchronize data with other apps seamlessly.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hyros: {
type: "app",
app: "hyros",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hyros.com/v1/api/v1.0/user-info`,
headers: {
"API-Key": `${this.hyros.$auth.api_key}`,
},
})
},
})