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.
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);
},
});
The Blink API allows you to access and manage data within the Blink platform, a hub for team communication and content sharing. Through Pipedream, you can automate workflows that leverage this API to streamline notifications, content distribution, and team interactions. You can create actions that respond to specific triggers, like new messages or updates to content, and connect Blink with other apps to enrich the functionality of your workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
blink: {
type: "app",
app: "blink",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.joinblink.com/v2/user`,
headers: {
Authorization: `Bearer ${this.blink.$auth.token}`,
"Accept": `application/json`,
},
})
},
})