EmailOctopus offers email marketing for next to nothing. The platform provides a simple and intuitive user interface which allows marketers to create their own rich HTML emails, and deliver them to subscribers inboxes with only a few clicks.
EmailOctopus is a cost-effective email marketing tool that lets you send emails and manage subscribers with ease. Using the EmailOctopus API on Pipedream, you can automate subscriber management, trigger email campaigns based on various actions, or synchronize your marketing efforts across different platforms. The API's capabilities facilitate a wide range of marketing workflows, from auto-updating mailing lists to sending targeted emails when specific conditions are met.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
emailoctopus: {
type: "app",
app: "emailoctopus",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://emailoctopus.com/api/1.5/lists`,
params: {
api_key: `${this.emailoctopus.$auth.api_key}`,
},
})
},
})
The Mautic API empowers marketers to automate and integrate a wide range of marketing tasks directly into Pipedream workflows. With Mautic's API, you can manage contacts, campaigns, emails, and reports, and use triggers to automate responses based on user behavior. It's a robust tool to align marketing efforts with real-time data and actions, making it possible to personalize communication, streamline follow-ups, and ultimately drive conversions with less manual effort.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mautic: {
type: "app",
app: "mautic",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.mautic.$auth.mautic_url}/api/users/self`,
headers: {
Authorization: `Bearer ${this.mautic.$auth.oauth_access_token}`,
},
})
},
})