with npm and Mailosaur?
Emit new event with the latest count of downloads for an npm package. See the documentation
Emit new event when a new version of an npm package is published. See the documentation
Emit new event when a message matching specific criteria is received. See the documentation
Emit new event when a message is received in a specified Mailosaur inbox. See the documentation
Sends an email through Mailosaur. See the documentation
Deletes an email from a Mailosaur server using its email ID. See the documentation
Search for received emails in a server matching specified criteria. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mailosaur: {
type: "app",
app: "mailosaur",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://mailosaur.com/api/servers`,
auth: {
username: `api`,
password: `${this.mailosaur.$auth.api_key}`,
},
})
},
})