Sendy is a self hosted newsletter app that lets you send newsletters 100x cheaper via Amazon SES.
Go to siteThe Sendy API allows you to programmatically manage email campaigns, subscribers, and lists. With Pipedream's capabilities, you can leverage Sendy API to create custom workflows that respond to events, synchronize data across platforms, and automate email marketing tasks. Pipedream provides a serverless platform where you can connect Sendy with hundreds of other apps without writing complex code, harnessing the power of Sendy's features with event-driven programming and API integration.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendy: {
type: "app",
app: "sendy",
}
},
async run({steps, $}) {
const data = {
"api_key": `${this.sendy.$auth.api_key}`,
}
return await axios($, {
method: "post",
url: `https://sendy.email/dev2/api/brands/get-brands.php`,
headers: {
"Content-Type": `application/x-www-form-urlencoded`,
},
data,
})
},
})
Automate Subscriber Syncing Between Platforms: Create a workflow on Pipedream that listens for new user sign-ups on your platform via webhooks, then automatically adds those users as subscribers to a specific list in Sendy. This keeps your email lists up-to-date without manual intervention.
Trigger Email Campaigns from CRM Events: Set up a Pipedream workflow that monitors updates in a CRM like Salesforce. When a lead reaches a certain stage, automatically trigger a Sendy email campaign to that lead. This ensures timely follow-up emails that could help in converting leads into customers.
Auto-Respond to Unsubscription Requests: Implement a Pipedream workflow that handles incoming unsubscription requests. Upon receiving an unsubscribe webhook from your app or website, the workflow can remove the user from the Sendy list and log the action in a Google Sheet for recordkeeping. This helps maintain compliance with email marketing regulations.
Adds a new subscriber or updates existing subscriber's details for a specific list. See the documentation
Creates a new draft campaign ready to be filled in with details. See the documentation
Removes a subscriber from a specified list. See the documentation
Sendy uses API keys for authentication. When you connect your Sendy account, Pipedream securely stores the keys so you can easily authenticate to Sendy APIs in both code and no-code steps.