Email (SMTP)
| Category | Communication |
| CLI | mailsend (mailsend-go) |
| Auth | Basic (SMTP credentials) |
| Config | SMTP_HOST, SMTP_PORT (optional) |
What it does
Section titled “What it does”Wraps mailsend-go to let CodeBuddy send emails via SMTP. The agent can compose and send emails with attachments, useful for automated notifications, reports, and team communication.
Prerequisites
Section titled “Prerequisites”Install mailsend-go:
# macOSbrew install mailsend-go
# Linux — download from GitHub releases# https://github.com/muquit/mailsend-go/releasesConfigure your SMTP server:
export SMTP_HOST="smtp.gmail.com"export SMTP_PORT="587"Capabilities
Section titled “Capabilities”- Send — compose and send emails with subject, body, recipients
- Attachments — attach files from the workspace
- CC/BCC — multiple recipients
- HTML — send HTML-formatted emails
Example prompts
Section titled “Example prompts”- “Send an email to team@company.com with today’s build report”
- “Email the test results to the QA team with the log file attached”