Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
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
Allows you to delete all email addresses on your blocks list. See the docs here
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}`,
},
})
},
})
The Weglot API allows for real-time translation of website content, simplifying the process of making a website multilingual. On Pipedream, you can use the Weglot API to craft workflows that automate translation tasks, manage language databases, or even synchronize content across different platforms. This API could be a game changer for businesses looking to globalize their online presence without the manual overhead.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
weglot: {
type: "app",
app: "weglot",
}
},
async run({steps, $}) {
const data = {
"l_from": `en`,
"l_to": `fr`,
"words": [
{"w":"This is a blue car", "t": 1},
{"w":"This is a black car", "t": 1}
],
"request_url": `https://www.test.com`,
}
return await axios($, {
method: "post",
url: `https://api.weglot.com/translate`,
headers: {
"Content-Type": `application/json`,
},
params: {
api_key: `${this.weglot.$auth.api_key}`,
},
data,
})
},
})