We build tech that lets you send mail from your computer in just a few clicks. Yes, you can call us the #MailNerds.
Creates a new document in your account from an uploaded file or a URL. See the documentation for file. See the documentation for URL
Allows you to add one or more email addresses to the global suppressions group. See the docs here
Allows you to create a new contact list. See the docs here
The Click2Mail API enables automated mailing solutions, letting you integrate direct mail processes within your digital workflows. On Pipedream, you can harness this API to craft serverless workflows that interact with other apps and services. Create, manage, and send postal mail without leaving your digital ecosystem. Automate mail for marketing, invoicing, or any correspondence that requires a physical mail presence.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
click2mail2: {
type: "app",
app: "click2mail2",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.click2mail2.$auth.subdomain}.click2mail.com/molpro/credit`,
headers: {
"Accept": `application/json`,
},
auth: {
username: `${this.click2mail2.$auth.username}`,
password: `${this.click2mail2.$auth.password}`,
},
})
},
})
The Twilio SendGrid API opens up a world of possibilities for email automation, enabling you to send emails efficiently and track their performance. With this API, you can programmatically create and send personalized email campaigns, manage contacts, and parse inbound emails for data extraction. When you harness the power of Pipedream, you can connect SendGrid to hundreds of other apps to automate workflows, such as triggering email notifications based on specific actions, syncing email stats with your analytics, or handling incoming emails to create tasks or tickets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendgrid: {
type: "app",
app: "sendgrid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendgrid.com/v3/user/account`,
headers: {
Authorization: `Bearer ${this.sendgrid.$auth.api_key}`,
},
})
},
})