with Enormail and Mailosaur?
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
The Enormail API brings email marketing campaigns to your fingertips, allowing you to automate subscriber management and email sending. You can craft workflows that respond to subscriber actions, update lists, and send targeted emails based on user behavior or predefined triggers. Pipedream's serverless platform magnifies Enormail's potential by enabling integrations with a multitude of apps to create custom automation chains, streamlining your marketing processes without having to write extensive code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
enormail: {
type: "app",
app: "enormail",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.enormail.eu/api/1.0/account.json`,
auth: {
username: `${this.enormail.$auth.api_key}`,
password: ``,
},
})
},
})
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}`,
},
})
},
})