All the email marketing and delivery tools you need to communicate with your customers. Most attractive monthly pricing and pay-as-you-go option on the market.
Go to siteThe 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}`,
},
})
},
})
Automated Welcome Email: Trigger a welcome email through Elastic Email when a new user signs up on your platform, using Pipedream's HTTP / Webhook trigger to start the workflow.
Subscriber List Sync: Maintain a synced subscriber list by updating Elastic Email contacts whenever a user updates their profile in your app, such as a CRM like Salesforce, which can be connected to Pipedream.
Transactional Email Trigger: Send a transactional email, like an order confirmation or password reset, from Elastic Email when an event occurs in an eCommerce platform like Shopify.
Elastic Email uses API keys for authentication. When you connect your Elastic Email account, Pipedream securely stores the keys so you can easily authenticate to Elastic Email APIs in both code and no-code steps.
You can get your API Key in the Manage API Key page.