with Azure Storage and Elastic Email?
Emit new event when a blob is deleted from a specified container in Azure Storage. See the documentation
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 a new blob is created to a specified container in Azure Storage. See the documentation
Emit new event when a recipient opens an email. See the documentation
Adds a new contact to a mailing list. See the documentation
Creates a new container under the specified account. If a container with the same name already exists, the operation fails. See the documentation
Deletes a specific blob from a container in Azure Storage. See the documentation
Sends an email to one or more recipients. See the documentation
Uploads a new blob to a specified container in Azure Storage. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
azure_storage: {
type: "app",
app: "azure_storage",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.azure_storage.$auth.oauth_access_token}`,
},
})
},
})
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}`,
},
})
},
})