NewsmanApp is an Smart Email Service Provider. We help our customers create, send and track beautiful emails. We have a technical , yet user friendly approach and we like to automatize a lot (custom editor blocks, custom preferences pages).
The Newsman API lets you automate and integrate email marketing efforts with ease. You can manage subscribers, send campaigns, and analyze your email marketing performance directly within Pipedream. This API is a gateway to create workflows that engage your audience, segment lists, and track results, combining the power of email marketing with other tools to create rich, automated tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
newsman: {
type: "app",
app: "newsman",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://ssl.newsman.app/api/1.2/rest/${this.newsman.$auth.user_id}/${this.newsman.$auth.api_key}/list.all.json`,
})
},
})
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.