Trigger workflows on new emails, and send emails to yourself as part of a Pipedream workflow.
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
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}`,
},
})
},
})