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:
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 using Mandrill. See API docs here: https://mandrillapp.com/api/docs/messages.curl.html#method=send
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