The only platform dedicated to Growth Marketing teams and B2B automation companies
The Emelia API enables streamlined email campaign management directly from Pipedream. By integrating Emelia with Pipedream, you can automate email sequences, monitor campaign performance, and trigger personalized follow-ups based on recipient actions. The API's functionality allows for the creation of data-driven workflows that can interact with subscriber lists, send out scheduled emails, and provide analytics, all within the scalable environment on Pipedream.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
emelia: {
type: "app",
app: "emelia",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graphql.emelia.io/graphql`,
headers: {
"Authorization": `${this.emelia.$auth.api_key}`,
"Content-Type": `application/json`,
},
params: {
query: `query me{
me{
uid
name
email
picture
}
}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.