Stripo is an email design platform. We help you build high-quality emails of any complexity, including ones with AMP, real-time, and interactive content.
The Stripo API lets you automate email design, creation, and management processes, streamlining your workflow within Pipedream. With Stripo, you can create email templates, customize them, and export directly to various email services. Pipedream, with its serverless execution model, can trigger workflows based on numerous events, such as webhook invocations, email events, or schedule timers. By combining Stripo with Pipedream, you can craft dynamic email campaigns, auto-generate personalized emails from templates, and synchronize your email designs with other platforms or databases effortlessly.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
stripo: {
type: "app",
app: "stripo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://my.stripo.email/emailgeneration/v1/emails`,
headers: {
"Content-Type": `application/json`,
"Stripo-Api-Auth": `${this.stripo.$auth.api_key}`,
},
})
},
})
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.