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.
Scrape the results from Bing search engine via the Autom.dev service. 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.
Scrape the results from Brave search engine using Autom.dev. See the documentation
Scrape the results from the Google search engine using the Autom.dev API. See the documentation
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
Autom API offers a rich set of features for creating, managing, and deploying automations. With its capabilities, you can streamline tasks by setting up triggers and actions based on certain conditions. When used within Pipedream, you can harness these features to create robust, serverless workflows that integrate with numerous other services and APIs. Autom API's interaction with Pipedream allows for building scalable automation solutions that respond to real-time events and connect with a multitude of apps to perform complex tasks seamlessly.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
autom: {
type: "app",
app: "autom",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://autom.dev/api/usage`,
headers: {
"Content-Type": `application/json`,
"x-api-key": `${this.autom.$auth.api_key}`,
},
})
},
})