Developer docs

Enginemailer integration

Enginemailer is an email marketing platform that enables businesses to manage…

Updated June 2026 38 actions available

Provider
enginemailer
Category
Other
Setup
User-supplied API key
Actions
38 available

Quick start

Call Enginemailer from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Enginemailer's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "ENGINEMAILER_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

End-users supply their own Enginemailer API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.

Available actions

38 actions exposed via the Enginemailer integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 38 actions
  • ENGINEMAILER_GET_GETCUSTOMFIELD
  • ENGINEMAILER_GET_LISTCAMPAIGN
  • ENGINEMAILER_GET_NEW_SUBSCRIBERS
  • ENGINEMAILER_GET_SUBCATEGORY
  • ENGINEMAILER_GET_SUBSCRIBER
  • ENGINEMAILER_GET_SUBSCRIBER_AUTORESPONDER_COMPLETED
  • ENGINEMAILER_GET_SUBSCRIBER_AUTORESPONDER_TRIGGERED
  • ENGINEMAILER_GET_SUBSCRIBERS_DELETED
  • ENGINEMAILER_GET_SUBSCRIBERS_MODIFIED
  • ENGINEMAILER_GET_SUBSCRIBERS_TAGGED
  • ENGINEMAILER_GET_SUBSCRIBERS_UNTAGGED
  • ENGINEMAILER_GET_UNSUBSCRIBE
  • ENGINEMAILER_INSERT_SUBSCRIBER
  • ENGINEMAILER_LIST_AUTORESPONDERS
  • ENGINEMAILER_LIST_CAMPAIGNS
  • ENGINEMAILER_LIST_FORMS
  • ENGINEMAILER_LIST_PAGES
  • ENGINEMAILER_LIST_POPUPS
  • ENGINEMAILER_LIST_TEMPLATES
  • ENGINEMAILER_PAUSE_CAMPAIGN
  • ENGINEMAILER_POST_UPDATECATEGORY
  • ENGINEMAILER_POST_UPDATE_SUBSCRIBER
  • ENGINEMAILER_SEND_CAMPAIGN
  • ENGINEMAILER_TAG_TO_SUBCATEGORY
  • ENGINEMAILER_UNSUBSCRIBE
  • ENGINEMAILER_UNSUBSCRIBE_SUBSCRIBER

Build with Enginemailer

Open OverSkill, describe what you want to build, and reference Enginemailer in your prompt — the AI will wire up the integration automatically.