Run any Skill in Manus
with one click
with one click
Run any Skill in Manus with one click
Get StartedSend emails using mailsend-go CLI
Stars132
Forks37
UpdatedMarch 8, 2026 at 03:01
SKILL.md
readonlyMenu
Send emails using mailsend-go CLI
Interact with Elasticsearch clusters via the API.
Manage GitLab issues and merge requests via the glab CLI.
Read, send, and manage Gmail emails via the gmail-cli tool.
Manage Redis databases via the redis-cli tool.
Manage AWS resources via the aws CLI.
Query metrics, manage monitors, post events, and interact with Datadog via the dogshell CLI.
| name | |
| description | Send emails using mailsend-go CLI |
| metadata | {"displayName":"Email (SMTP)","icon":"mail","category":"communication","version":"1.0.0","dependencies":{"cli":"mailsend","checkCommand":"mailsend -V","install":{"darwin":{"brew":"mailsend-go","go":"github.com/muquit/mailsend-go@latest"},"linux":{"go":"github.com/muquit/mailsend-go@latest"},"windows":{"go":"github.com/muquit/mailsend-go@latest"}}},"config":[{"name":"SMTP_HOST","label":"SMTP Host","type":"string","required":false,"placeholder":"smtp.gmail.com"},{"name":"SMTP_PORT","label":"SMTP Port","type":"string","required":false,"placeholder":"587"}],"auth":{"type":"basic"}} |
This skill allows sending emails via SMTP using the mailsend tool (mailsend-go).
mailsend binary must be in .codebuddy/bin/mailsendUse ./.codebuddy/bin/mailsend to send emails.
./.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"
./.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"