Mandrill

Transactional email API for Mailchimp users

Go to site
Explore
/
Apps
/
Mandrill

Mandrill API Integrations

Build and run workflows using the Mandrill API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

With the Mandrill API, you can integrate Mandrill into your own applications to send emails, track results, manage subscribers, and more.

Here are some examples of what you can build with the Mandrill API:

  • An email marketing campaign tool that integrates with Mandrill
  • A tool to track email deliverability
  • A subscription management tool
  • An email template builder
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    mandrill: {
      type: "app",
      app: "mandrill",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://mandrillapp.com/api/1.0/messages/send.json`,
      data: {
        key: this.mandrill.$auth.api_key,
        message: {
          html: params.html,
          text: params.text,
          subject: params.subject,
          from_email: params.from_email,
          from_name: params.from_name,
          to: [{
            email: params.email,
            name: params.name,
            type: params.type || "to",
          }]
        }
      }
    })
  },
})
Send an Email with Mandrill API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Mandrill
 
Try it
Send an Email with Mandrill API on New Item in Feed from RSS API
RSS + Mandrill
 
Try it
Send an Email with Mandrill API on New Message from Discord API
Discord + Mandrill
 
Try it
Send an Email with Mandrill API on New Message In Channels from Slack API
Slack + Mandrill
 
Try it
Send an Email with Mandrill API on New Message in Channel from Discord Bot API
Discord Bot + Mandrill
 
Try it
Send an Email with the Mandrill API

Send an email using Mandrill. See API docs here: https://mandrillapp.com/api/docs/messages.curl.html#method=send

 
Try it

Authentication

Mandrill uses API keys for authentication. When you connect your Mandrill account, Pipedream securely stores the keys so you can easily authenticate to Mandrill APIs in both code and no-code steps.

Add your Mandrill API key below