MailerSend integration
MailerSend is a transactional email service designed for developers to…
- Provider
- mailersend
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 23 available
Quick start
Call MailerSend from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to MailerSend'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(
"MAILERSEND_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 MailerSend 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
23 actions exposed via the
MailerSend integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
MAILERSEND_CREATE_DOMAIN -
MAILERSEND_CREATE_SMTP_USER -
MAILERSEND_CREATE_TOKEN -
MAILERSEND_CREATE_WEBHOOK -
MAILERSEND_DELETE_WEBHOOK -
MAILERSEND_GET_API_QUOTA -
MAILERSEND_GET_DOMAIN -
MAILERSEND_GET_DOMAIN_RECIPIENTS -
MAILERSEND_GET_DOMAINS -
MAILERSEND_GET_GENERAL_RESOURCES -
MAILERSEND_GET_IDENTITIES -
MAILERSEND_GET_MESSAGES
Show all 23 actions
-
MAILERSEND_GET_RECIPIENTS -
MAILERSEND_GET_SMS_ACTIVITY -
MAILERSEND_GET_SMS_INBOUNDS -
MAILERSEND_GET_SMS_MESSAGES -
MAILERSEND_GET_SMS_NUMBERS -
MAILERSEND_GET_SMS_RECIPIENTS -
MAILERSEND_GET_SMTP_USERS -
MAILERSEND_GET_TEMPLATES -
MAILERSEND_GET_TOKENS -
MAILERSEND_GET_USERS -
MAILERSEND_GET_WEBHOOKS
Build with MailerSend
Open OverSkill, describe what you want to build, and reference MailerSend in your prompt — the AI will wire up the integration automatically.