skills/skills.volces.com/gog-html-email

gog-html-email

Installation
SKILL.md

gog-html-email

Enhanced HTML email formatting for gog CLI with ready-to-use templates.

How to Send HTML Emails

ALWAYS use this exact workflow:

  1. Read the appropriate template file from workspace/skills/gog-html-email/templates/
  2. Replace placeholders using sed commands
  3. Send via gog gmail send --body-html

Example:

TEMPLATE=$(cat workspace/skills/gog-html-email/templates/basic.html)
HTML=$(echo "$TEMPLATE" | sed 's/\[NAME\]/John/g' | sed 's/\[MESSAGE\]/Your message here/g' | sed 's/\[SIGNATURE\]/Your Name/g')
gog gmail send --to recipient@example.com --subject "Subject" --body-html "$HTML"
Installs
4
First Seen
Apr 15, 2026
gog-html-email from skills.volces.com