Create unlimited podcasts for one monthly price. Invite team members, see your podcast's stats, and distribute to Apple Podcasts, Spotify, Google Podcasts. We also offer private podcasting for your company or membership site.
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
Transistor.fm is a platform offering podcast hosting and analytics services. With its API, you can automate the upload and management of podcast episodes, access detailed analytics, and manage users. When interfaced with Pipedream, Transistor.fm's API enables the creation of tailored, serverless workflows that can streamline your podcasting process, engage your audience effectively, and integrate with your digital ecosystem, from social media to email marketing platforms.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
transistor_fm: {
type: "app",
app: "transistor_fm",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.transistor.fm/v1`,
headers: {
"x-api-key": `${this.transistor_fm.$auth.api_key}`,
},
})
},
})
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});