Mailgun is an email automation service built for developers. Powerful transactional email APIs enable you to send, receive, and track emails.
Go to siteThe Mailgun API on Pipedream is a potent tool for automating email operations without the overhead of managing a full-fledged email server. It offers capabilities to send, receive, track, and store emails with ease. With Pipedream's serverless platform, you can trigger workflows using Mailgun events, such as inbound emails or delivery status changes, and connect them to hundreds of other services to streamline communication, marketing, and notification systems within your ecosystem.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mailgun: {
type: "app",
app: "mailgun",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.mailgun.$auth.region && this.mailgun.$auth.region === "EU" ? "api.eu" : "api"}.mailgun.net/v3/domains`,
auth: {
username: `api`,
password: `${this.mailgun.$auth.api_key}`,
},
})
},
})
Transactional Email Automation: Automatically send transactional emails, like order confirmations or password resets, using Mailgun when a new entry is added to a Google Sheets spreadsheet or a new order is placed on an e-commerce platform like Shopify.
Email Campaign Analytics: Collect and analyze email campaign data by connecting Mailgun with a data visualization tool like Google Data Studio. Each time an email is sent, delivered, or opened, Pipedream can process this data and update your analytics dashboards in real-time.
Customer Support Ticketing System: Create a support ticket in a service like Zendesk or Trello when Mailgun processes an inbound email. Use Pipedream to parse the email content and automatically categorize and prioritize the ticket based on predefined criteria.
Emit new event when the email recipient could not be reached.
Emit new event when the email recipient clicked on a link in the email. Open tracking must be enabled in the Mailgun control panel, and the CNAME record must be pointing to mailgun.org. See more at the Mailgun User's Manual Tracking Messages section
Emit new event when the email recipient clicked on the spam complaint button within their email client. Feedback loops enable the notification to be received by Mailgun.
Emit new event when an email is sent and accepted by the recipient email server.
Emit new event when an email can't be delivered to the recipient email server.
Delete a mailing list member by address. See the docs here
Retrieve a mailing list member by address. See the docs here
Mailgun uses API keys for authentication. When you connect your Mailgun account, Pipedream securely stores the keys so you can easily authenticate to Mailgun APIs in both code and no-code steps.