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:
- Read the appropriate template file from
workspace/skills/gog-html-email/templates/ - Replace placeholders using
sedcommands - 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"