Deploy high-quality, natural-sounding human voices in dozens of languages.
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
Allows you to delete all emails on your bounces list. See the docs here
The Amazon Polly API lets you convert text into lifelike speech using deep learning. With Polly, you can create applications that talk and build entirely new categories of speech-enabled products. Pipedream's platform enables you to integrate Polly's capabilities into workflows that can automate tasks, like generating audio files from blog posts or alert messages, and piping them to various services or storage solutions.
import AWS from 'aws-sdk'
import { PollyClient, StartSpeechSynthesisTaskCommand } from "@aws-sdk/client-polly"
export default defineComponent({
props: {
amazon_polly: {
type: "app",
app: "amazon_polly",
}
},
async run({steps, $}) {
const { accessKeyId, secretAccessKey } = auths.amazon_polly
// Create an Amazon Polly service client object.
const creds = new AWS.Credentials(accessKeyId, secretAccessKey);
const pollyClient = new PollyClient({ credentials: creds, region: "us-east-1" });
// Create input data
var data = {
OutputFormat: "mp3",
OutputS3BucketName: "videoanalyzerbucket",
Text: "Hello David, How are you?",
TextType: "text",
VoiceId: "Joanna",
SampleRate: "22050",
};
return await pollyClient.send(new StartSpeechSynthesisTaskCommand(data));
},
})
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}`,
},
})
},
})