with Sender and mails.so?
Send an email address to be validated by the API. See the documentation
The Sender API, available on Pipedream, offers powerful capabilities to automate communication and marketing workflows. By leveraging this API, you can streamline how you manage emails, newsletters, and subscriber lists directly from your app environment. This can include sending personalized email campaigns, managing contacts, analyzing campaign performance, and even triggering transactional emails based on user actions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sender: {
type: "app",
app: "sender",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sender.net/v2/subscribers`,
headers: {
Authorization: `Bearer ${this.sender.$auth.api_token}`,
"Accept": `application/json`,
"Content-Type": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mails_so: {
type: "app",
app: "mails_so",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.mails.so/v1/validate`,
headers: {
"x-mails-api-key": `${this.mails_so.$auth.api_key}`,
},
params: {
email: `john.smith@example.com`,
},
})
},
})