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.
Emit new event when a subscriber unsubscribed.
Emit new event each time a record is added, updated, or deleted in an Airtable table. See the documentation
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}`,
},
})
},
})
Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})