Sendy is a self hosted newsletter app that lets you send newsletters 100x cheaper via Amazon SES.
Emit new event when you add or modify a new row in a table. See the docs here
Emit new event when new rows are returned from a custom query. See the docs here
Emit new event when a new table is added to a database. See the docs here
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
The 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,
})
},
})
The MySQL application on Pipedream enables direct interaction with your MySQL databases, allowing you to perform CRUD operations—create, read, update, delete—on your data with ease. You can leverage these capabilities to automate data synchronization, report generation, and event-based triggers that kick off workflows in other apps. With Pipedream's serverless platform, you can connect MySQL to hundreds of other services without managing infrastructure, crafting complex code, or handling authentication.
import mysql from '@pipedream/mysql';
export default defineComponent({
props: {
mysql,
},
async run({steps, $}) {
// Component source code:
// https://github.com/PipedreamHQ/pipedream/tree/master/components/mysql
const queryObj = {
sql: "SELECT NOW()",
values: [], // Ignored since query does not contain placeholders
};
return await this.mysql.executeQuery(queryObj);
},
});