with Mandrill and Jira Data Center?
Mandrill, a transactional email API for Mailchimp, empowers developers to easily send personalized, one-to-one e-commerce emails, or automated transactional emails. With Pipedream, you can harness Mandrill's capabilities to create powerful automations that trigger on various events, like updating databases on email delivery, syncing with CRM systems when users interact with your emails, or even conducting sentiment analysis on email content for customer support insights.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mandrill: {
type: "app",
app: "mandrill",
}
},
async run({steps, $}) {
const data = {
"key": `${this.mandrill.$auth.api_key}`,
}
return await axios($, {
method: "post",
url: `https://mandrillapp.com/api/1.0/users/ping`,
data,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
jira_data_center: {
type: "app",
app: "jira_data_center",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.jira_data_center.$auth.api_url}/rest/auth/1/session`,
headers: {
Authorization: `Bearer ${this.jira_data_center.$auth.personal_access_token}`,
},
})
},
})