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.
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
The Fireberry API enables users to interact with Fireberry's suite of services programmatically. With its API, you can automate tasks related to their offerings. In Pipedream, you could leverage this API to create serverless workflows that respond to various triggers (like HTTP requests, emails, or schedule timings) and integrate with other apps to extend Fireberry's functionality.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
fireberry: {
type: "app",
app: "fireberry",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.fireberry.com/api/record/crmuser`,
headers: {
"accept": `application/json`,
"tokenid": `${this.fireberry.$auth.api_access_token}`,
},
})
},
})