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.
Fetches specified data for a company using a domain name. 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.
Obtains HTML from a given website through web scraping for high performance access and interpretation. See the documentation
Retrieves the core technology used on a designated website. (CMS, Framework, Analytics, CDN, Hosting, etc.) See the documentation
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
Piloterr API allows you to integrate and automate various aspects of project management and team collaboration. Within Pipedream's serverless platform, you can leverage this API to create custom workflows, connecting Piloterr's capabilities with other apps to streamline operations, trigger actions based on project updates, and synchronize data across different tools.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
piloterr: {
type: "app",
app: "piloterr",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://piloterr.com/api/usage`,
headers: {
"x-api-key": `${this.piloterr.$auth.api_key}`,
},
})
},
})