Mailersend is a great tool for building email marketing campaigns. With Mailersend, you can easily create beautiful email newsletters, manage your subscribers, and track the performance of your campaigns.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mailersend: {
type: "app",
app: "mailersend",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.mailersend.com/v1/domains`,
headers: {
Authorization: `Bearer ${this.mailersend.$auth.api_token}`,
},
})
},
})
Emit new event when the recipient clicks a link in your email. See the documentation
Emit new event when your email is successfully delivered with no errors. See the documentation
Emit new event when your email is not delivered. See the documentation
Emit new event when the recipient receives your email and opens it. See the documentation
Emit new event when your email is sent from the sending servers. See the documentation
This action sends a personalized e-mail to the specified recipient. See the documentation
This action sends a personalized e-mail to the specified recipient using templates. See the documentation
Mailersend uses API keys for authentication. When you connect your Mailersend account, Pipedream securely stores the keys so you can easily authenticate to Mailersend APIs in both code and no-code steps.
API tokens are generated for sending domains and can have different permissions to limit which areas of your account they may be used to access. See docs.