# Email

> Send emails using mailsend-go CLI

- Skill: `olasunkanmi-se/email` (Agent Skill)
- Install (CLI): `npx skillmds@latest add olasunkanmi-se/email`
- Raw SKILL.md: https://api.skillmd.com/api/skills/olasunkanmi-se/email/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- Author: olasunkanmi-se (https://skillmd.com/u/olasunkanmi-se)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/olasunkanmi-se/email

---


# Email Skill

This skill allows sending emails via SMTP using the `mailsend` tool (mailsend-go).

## Prerequisites

- `mailsend` binary must be in `.codebuddy/bin/mailsend`
- SMTP credentials (host, port, user, password)

## Usage

Use `./.codebuddy/bin/mailsend` to send emails.

### Send a simple email

```bash
./.codebuddy/bin/mailsend -smtp <smtp_host> -port <smtp_port> -auth -user <username> -pass <password> -from <sender_email> -to <recipient_email> -sub "Subject" -body "Body text"
```

### Send with SSL/TLS (Gmail example)

```bash
./.codebuddy/bin/mailsend -smtp smtp.gmail.com -port 587 -starttls -auth -user <username> -pass <password> -from <sender_email> -to <recipient_email> -sub "Subject" -body "Body text"
```

### Notes

- For Gmail, use App Passwords if 2FA is enabled.
- Always ask the user for SMTP credentials before sending if not provided.

