with Elastic Email and V7 Go?
Emit new event when a new contact is added to a mailing list. See the documentation
Emit new event when a recipient clicks a link in an email. See the documentation
Emit new event when all fields of an entity are completed in V7 Go.
Emit new event when a recipient opens an email. See the documentation
Adds a new contact to a mailing list. See the documentation
Initiates the creation of a new project with a unique project identifier. See the documentation
Sends an email to one or more recipients. See the documentation
Unsubscribes a contact from future emails. See the documentation
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
v7_go: {
type: "app",
app: "v7_go",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://go.v7labs.com/api/workspaces/${this.v7_go.$auth.workspace_id}/members`,
headers: {
"X-API-KEY": `${this.v7_go.$auth.api_key}`,
},
})
},
})