Trigger workflows on new emails, and send emails to yourself as part of a Pipedream workflow.
Get a unique address where you can send emails to trigger your workflow.
Creates a new organization in Turbot Pipes. See the documentation
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
Deletes the specified organization. See the documentation
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
The Turbot Pipes API allows for sophisticated data integration and workflow automation across a variety of sources and services. With Turbot Pipes, you can design data pipelines that connect your systems, automate data transformations, and orchestrate tasks to streamline your operations. The API provides methods to create, manage, and execute these data pipelines, which can be especially powerful when leveraged through Pipedream's serverless platform. You can connect Turbot Pipes with numerous other apps available on Pipedream to automate data flows, sync information, and react to events in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
turbot_pipes: {
type: "app",
app: "turbot_pipes",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://pipes.turbot.com/api/v0/actor`,
headers: {
Authorization: `Bearer ${this.turbot_pipes.$auth.token}`,
},
})
},
})