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 BotConversa API allows for the automation and integration of chatbot services into various platforms, fostering seamless interactions with users. With this API, you can create, manage, and deploy conversational bots that can engage with users in real-time, providing support, gathering feedback, or even conducting surveys. On Pipedream, you can concoct workflows that trigger actions within BotConversa or respond to events, such as new messages or user queries. This opens the door to a world where chatbots become a part of larger automation schemes, interacting with other apps and services to streamline communication processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
botconversa: {
type: "app",
app: "botconversa",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://backend.botconversa.com.br/api/v1/webhook/campaigns/`,
headers: {
"Accept": `application/json`,
"API-KEY": `${this.botconversa.$auth.api_key}`,
},
})
},
})