The official command-line interface for Envloped — the email platform for developers and AI agents.
curl -fsSL https://envloped.com/install.sh | bashOr download binaries directly from Releases.
| OS | Architecture |
|---|---|
| Linux | amd64, arm64 |
| macOS | amd64, arm64 (Apple Silicon) |
| Windows | amd64 |
# Authenticate
envloped login
# Send an email
envloped send --from hello@yourdomain.com --to user@example.com \
--subject "Hello!" --text "Sent from the CLI"
# List sent emails
envloped emails list
# Manage domains
envloped domains list
envloped domains add mydomain.com
# Manage API keys
envloped keys list
envloped keys create "My Key"Use environment variables for non-interactive authentication:
export ENVLOPED_API_KEY=en_your_api_key
envloped send --from a@b.com --to c@d.com --subject "Deploy" --text "Done"- name: Install Envloped CLI
run: curl -fsSL https://envloped.com/install.sh | bash
- name: Send notification
env:
ENVLOPED_API_KEY: ${{ secrets.ENVLOPED_API_KEY }}
run: envloped send --from a@b.com --to c@d.com --subject "Deployed" --text "OK"The CLI is designed for autonomous use by AI agents (Claude Code, Cursor, Codex):
--jsonflag on every command for machine-readable output--stdinfor piping JSON email payloads--forceto skip confirmation prompts--quietfor minimal output
See install.md for agent installation instructions.
Proprietary. Copyright Envloped.