with FlippingBook and Elastic Email?
Emit new event when a new lead is created via a lead capture form.
Emit new event when a new contact is added to a mailing list. See the documentation
Emit new event when a delivery event occurs. See the documentation
Emit new event when a recipient clicks a link in an email. See the documentation
Generates a new flipbook from an input PDF file. See the documentation
Adds a new contact to a mailing list. See the documentation
Locates a specific flipbook using the provided title. See the documentation
Create a campaign in an Elastic Email account. See the documentation
Create a contact in an Elastic Email account. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
flippingbook: {
type: "app",
app: "flippingbook",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api-tc.is.flippingbook.com/api/v1/auth/me`,
headers: {
Authorization: `Bearer ${this.flippingbook.$auth.api_key}`,
},
})
},
})
The Elastic Email API allows you to integrate a robust email sending platform into your Pipedream workflows. Use it to send emails, manage contacts, and track campaign statistics. With this API, you can automate email notifications, synchronize subscriber lists, or trigger marketing campaigns based on user actions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
elastic_email: {
type: "app",
app: "elastic_email",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.elasticemail.com/v2/account/profileoverview`,
headers: {
"X-ElasticEmail-ApiKey": `${this.elastic_email.$auth.api_key}`,
},
})
},
})