ReachMail is a simple, web-based tool to create, deliver and track beautiful HTML email campaigns and newsletters.
The action will remove the recipient from the specified list. See the documentation
Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.
The ReachMail API lets you seamlessly integrate email marketing capabilities into your workflows on Pipedream. With it, you can automate email list management, campaign creation, and performance tracking. This flexibility opens up possibilities for custom email marketing automation, audience segmentation, and targeted outreach based on user actions or data from other apps. By harnessing the power of Pipedream's serverless platform, you can build workflows that trigger from various events and connect with numerous other services to create a sophisticated, automated email marketing machine.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
reachmail: {
type: "app",
app: "reachmail",
}
},
async run({steps, $}) {
return await axios($, {
url: ` https://services.reachmail.net/administration/users/current`,
headers: {
Authorization: `Bearer ${this.reachmail.$auth.api_token}`,
"accept": `application/json`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})