From Sendmux
Provides terminal-driven Sendmux CLI commands for Management, Mailbox, and Sending API operations including install, profiles, key-scope preflight, and JSON output.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sendmux:sendmux-cliThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when the terminal is the right Sendmux surface.
Use this skill when the terminal is the right Sendmux surface.
smx_root_ keys only for management:* commands.smx_mbx_ keys or scoped smx_agent_ tokens for mailbox:* commands.smx_mbx_ key or owner-approved Sending-resource smx_agent_ token for sending:* commands. Pre-claim smx_agent_ tokens cannot send.--json for agent-readable output.npm install -g @sendmux/cli
sendmux --help
The package exposes the sendmux binary.
Use the latest CLI before using smx_agent_ tokens; older installs may reject that prefix before sending a request.
Create separate profiles for root and mailbox keys.
sendmux profiles:set default --api-key "$SENDMUX_ROOT_KEY" --default --json
sendmux profiles:set mailbox --api-key "$SENDMUX_MBX_KEY" --json
sendmux profiles:set sending --api-key "$SENDMUX_MBX_KEY" --json
sendmux profiles:list --json
sendmux profiles:show default --json
Profile reads mask stored keys. profiles:set reports key_kind as root or mailbox.
Authentication resolution:
--api-key, then SENDMUX_API_KEY.--profile / -p, then SENDMUX_PROFILE, then the configured default profile.--base-url, then SENDMUX_BASE_URL, then the selected profile.The CLI infers key kind from the prefix before sending a request.
| Command surface | Required key |
|---|---|
management:* | smx_root_ |
mailbox:* | smx_mbx_ or scoped smx_agent_ |
sending:* | Send-capable smx_mbx_ key or owner-approved Sending-resource smx_agent_ token |
Wrong-key examples fail before network:
Command requires a root API key, but --api-key contains a mailbox API key.
Command requires a send-capable `smx_mbx_` key or owner-approved Sending-resource `smx_agent_` token, but --api-key contains a root API key.
The CLI exposes generated operation commands:
| Surface | Count | Examples |
|---|---|---|
| Management | 53 | management:domains:list, management:create-domain, management:create-mailbox, management:get-spend-summary, management:create-webhook |
| Mailbox | 41 | mailbox:search-message-snippets, mailbox:batch-get-messages, mailbox:query-message-changes, mailbox:send-message, mailbox:list-granted-mailboxes |
| Sending | 7 | sending:get-open-api-spec, sending:send, sending:send:batch, sending:upload-attachment, sending:create-attachment-upload, sending:complete-attachment-upload, sending:get-attachment |
| Profiles | 3 | profiles:list, profiles:set, profiles:show |
Use command-level help to discover accepted path, query, header, and body fields:
sendmux management:create-domain --help
sendmux mailbox:search-message-snippets --help
sendmux sending:send:batch --help
sendmux sending:upload-attachment --help
Operation commands share these flags:
| Flag | Use |
|---|---|
--api-key | Direct key; overrides profile/env profile lookup. |
--base-url | Override API base URL. |
--profile, -p | Select a local profile. |
--body | Inline JSON request body, or text bytes for byte-oriented operations. |
--body-file | Read a JSON request body or byte payload from a file. |
--attach | Attach a local file to supported send commands. Repeat for multiple files. |
--file | Read a local file for mailbox attachment upload convenience commands. |
--via-presigned | Upload a mailbox --file through a short-lived signed URL instead of API bytes. |
--content-type | Override inferred MIME type for --attach or --file. |
--path name=value | Path parameters. Repeat for multiple path params. |
--query name=value | Query parameters. Repeat for filters and pagination. |
--header name=value | Headers accepted by the operation. Repeat for multiple headers. |
--idempotency-key | Shortcut for Idempotency-Key. Works only when the operation supports it. |
--if-match | Shortcut for If-Match. Works only when the operation supports it. |
--if-none-match | Shortcut for If-None-Match. Works only when the operation supports it. |
--json | Machine-readable output. |
--path, --query, and --header require name=value. Booleans use true or false. Repeat an array-valued parameter rather than comma-joining it.
Pass either --body or --body-file, not both.
Use sendmux-attachments for attachment-heavy flows and size/token trade-offs.
Create a domain:
sendmux management:create-domain \
--profile default \
--idempotency-key "$IDEMPOTENCY_KEY" \
--body '{"domain":"example.com","mode":"send_receive"}' \
--json
Get domain DNS records:
sendmux management:get-domain-zone-file \
--profile default \
--path public_id=mdom_abc \
--json
Search a mailbox without reading full messages:
sendmux mailbox:search-message-snippets \
--profile mailbox \
--query q=invoice \
--query is_unread=true \
--query limit=10 \
--json
Batch-read selected mailbox messages:
sendmux mailbox:batch-get-messages \
--profile mailbox \
--body '{
"ids": ["eml_abc", "eml_def"],
"body_mode": "clean_json",
"max_body_chars": 4000
}' \
--json
Send a batch:
sendmux sending:send:batch \
--profile sending \
--idempotency-key "$IDEMPOTENCY_KEY" \
--body-file ./messages.json \
--json
Send through the Sending API with a local attachment:
sendmux sending:send \
--profile sending \
--idempotency-key "$IDEMPOTENCY_KEY" \
--attach ./report.pdf \
--body '{"from":{"email":"[email protected]"},"to":{"email":"[email protected]"},"subject":"Report","html_body":"<p>Attached.</p>"}' \
--json
sending:send --attach uploads the file first and injects an attachment_id reference; it does not place base64 in the send body.
Upload a Sending attachment separately:
sendmux sending:upload-attachment \
--profile sending \
--body-file ./report.pdf \
--query filename=report.pdf \
--query content_type=application/pdf \
--json
Send a mailbox message with a local attachment:
sendmux mailbox:send-message \
--profile mailbox \
--idempotency-key "$IDEMPOTENCY_KEY" \
--attach ./report.pdf \
--body '{"to":[{"email":"[email protected]","name":null}],"subject":"Report","text_body":"Attached."}' \
--json
Mailbox attachment upload commands share the 7,500,000 byte per-attachment cap. For larger files, split the file or host it externally and send a link.
Upload a mailbox attachment by presigned URL:
sendmux mailbox:upload-attachment \
--profile mailbox \
--file ./report.pdf \
--via-presigned \
--json
Poll one unchanged-safe delivery log:
sendmux management:get-email-log \
--profile default \
--path public_id=dlog_abc \
--if-none-match "$ETAG" \
--json
sendmux-getting-started.sendmux-send-email.sendmux-attachments.sendmux-mailbox-agent.sendmux-management.sendmux-mcp-setup.sendmux-token-efficient-usage.npx claudepluginhub sendmux/skills --plugin sendmuxManage Sendmux account-level resources: domains, mailboxes, sending accounts, webhooks, billing, spend, delivery logs, and metrics using smx_root_ keys.
Integrates Resend email service via MCP protocol for AI agents. Sends transactional and marketing emails, configures sender verification, and automates workflows from Claude Desktop, GitHub Copilot, and Cursor.
Sends iMessage and SMS from the shell, scripts, or hooks using the @sendblue/cli npm package. Manages contacts, account setup, and outbound messaging with no API client.