Mailmodo

Free Email Marketing Software to create & send email

Go to site
Explore
/
Apps
/
Mailmodo

Mailmodo API Integrations

Build and run workflows using the Mailmodo API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

Mailmodo is a powerful API that allows you to create and send custom email newsletters. With Mailmodo, you can create beautiful, responsive email newsletters that look great on any device. Plus, Mailmodo makes it easy to manage your subscribers and track your results.

Here are some examples of what you can build with the Mailmodo API:

  • A custom email newsletter for your business
  • A weekly email digest of your blog posts
  • A monthly email update for your customers
  • An email course or tutorial
  • A promotional email campaign
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    mailmodo: {
      type: "app",
      app: "mailmodo",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.mailmodo.com/api/v1/campaigns?type=CONTACT_LIST`,
      headers: {
        "Content-Type": `application/json`,
        "mmApiKey": `${this.mailmodo.$auth.api_key}`,
      },
    })
  },
})

Authentication

Mailmodo uses API keys for authentication. When you connect your Mailmodo account, Pipedream securely stores the keys so you can easily authenticate to Mailmodo APIs in both code and no-code steps.

Navigate to Settings > API Keys, and click Show API Key to view the default API key.