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.
Go to siteThe Emailoctopus API allows you to send bulk emails, track email opens and clicks, and manage your Email octopus account. You can use the API to:
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}`,
},
})
},
})
Emailoctopus uses API keys for authentication. When you connect your Emailoctopus account, Pipedream securely stores the keys so you can easily authenticate to Emailoctopus APIs in both code and no-code steps.
You can get your API Key in the Emailoctopus's API page.