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 Instapaper API offers a streamlined way to interact with saved articles. With it, you can automate your reading list management by adding new items, moving through folders, or marking them as read or unread. Integrating the Instapaper API with Pipedream lets you create custom workflows, triggering actions in Instapaper or other apps based on specific conditions or schedules.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
instapaper: {
type: "app",
app: "instapaper",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.instapaper.com/api/authenticate`,
auth: {
username: `${this.instapaper.$auth.username}`,
password: `${this.instapaper.$auth.password}`,
},
})
},
})