Email, SMS marketing, subscription forms management and landing page editor to meet all your marketing strategy needs.
With Acumbamail's API, you can build a variety of applications and integrations
to help you automate your email marketing. Here are some examples of what you
can build:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
acumbamail: {
type: "app",
app: "acumbamail",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://acumbamail.com/api/1/getLists/`,
params: {
auth_token: `${this.acumbamail.$auth.auth_token}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})