{
  "schemaVersion": "1.0",
  "item": {
    "slug": "gog-html-email",
    "name": "Gog Html Email",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/syedair/gog-html-email",
    "canonicalUrl": "https://clawhub.ai/syedair/gog-html-email",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/gog-html-email",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=gog-html-email",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "templates/README.md",
      "templates/anniversary.html",
      "templates/basic.html",
      "templates/birthday.html",
      "templates/button.html"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/gog-html-email"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/gog-html-email",
    "agentPageUrl": "https://openagent3.xyz/skills/gog-html-email/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gog-html-email/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gog-html-email/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "gog-html-email",
        "body": "Enhanced HTML email formatting for gog CLI with ready-to-use templates."
      },
      {
        "title": "How to Send HTML Emails",
        "body": "ALWAYS use this exact workflow:\n\nRead the appropriate template file from workspace/skills/gog-html-email/templates/\nReplace placeholders using sed commands\nSend via gog gmail send --body-html\n\nExample:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/basic.html)\nHTML=$(echo \"$TEMPLATE\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[MESSAGE\\]/Your message here/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\"\n\nFor multi-paragraph messages:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/basic.html)\n# Replace [MESSAGE] with multiple <p> tags for proper spacing\nMESSAGE='<p style=\"margin: 0 0 16px 0;\">First paragraph.</p><p style=\"margin: 0 0 16px 0;\">Second paragraph.</p><p style=\"margin: 0 0 16px 0;\">Third paragraph.</p>'\nHTML=$(echo \"$TEMPLATE\" | sed \"s|\\[MESSAGE\\]|$MESSAGE|g\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\"\n\nDO NOT:\n\nManually construct HTML strings\nUse heredocs or multi-line strings\nInclude literal \\n characters in HTML\nPut multiple paragraphs in a single <p> tag"
      },
      {
        "title": "Template Selection Guide",
        "body": "Choose the right template based on the email purpose:\n\nBusiness/Professional:\n\nbasic.html - Simple professional emails\nmeeting.html - Meeting invitations (requires: NAME, TOPIC, DATE, TIME, DURATION, LOCATION, SIGNATURE)\nfollow-up.html - Follow-up emails\nstatus-update.html - Project updates\ninvoice.html - Invoices and payments\nbutton.html - Emails with call-to-action buttons\nnewsletter.html - Newsletters\n\nIslamic/Religious:\n\njummah.html - Friday greetings (Jummah Mubarak)\neid.html - Eid celebrations (Eid Mubarak)\nramadan.html - Ramadan greetings (Ramadan Mubarak)\n\nCelebrations:\n\nbirthday.html - Birthday wishes\nanniversary.html - Anniversary wishes\ncongratulations.html - Congratulations messages\nnew-year.html - New Year wishes (requires: NAME, MESSAGE, YEAR, SIGNATURE)\n\nOther:\n\nwelcome.html - Welcome new users\nthank-you.html - Thank you messages\nhighlight.html - Important announcements\nmulti-paragraph.html - Long-form content"
      },
      {
        "title": "HTML Template Files",
        "body": "All templates are available in the templates/ directory. Each template uses placeholder variables in [BRACKETS] that you can replace with actual content."
      },
      {
        "title": "Available Templates",
        "body": "basic.html - Simple professional email\n\nPlaceholders: [NAME], [MESSAGE], [SIGNATURE]\n\n\n\nhighlight.html - Email with highlighted box\n\nPlaceholders: [NAME], [HIGHLIGHT_MESSAGE], [MESSAGE], [SIGNATURE]\n\n\n\nbutton.html - Email with call-to-action button\n\nPlaceholders: [NAME], [MESSAGE], [BUTTON_URL], [BUTTON_TEXT], [SIGNATURE]\n\n\n\nmulti-paragraph.html - Multiple paragraph email\n\nPlaceholders: [NAME], [PARAGRAPH_1], [PARAGRAPH_2], [PARAGRAPH_3], [SIGNATURE]\n\n\n\nmeeting.html - Meeting invitation\n\nPlaceholders: [NAME], [TOPIC], [DATE], [TIME], [DURATION], [LOCATION], [SIGNATURE]\n\n\n\nfollow-up.html - Follow-up email\n\nPlaceholders: [NAME], [TOPIC], [MESSAGE], [SIGNATURE]\n\n\n\nnewsletter.html - Newsletter format\n\nPlaceholders: [NEWSLETTER_TITLE], [DATE], [SECTION_1_TITLE], [SECTION_1_CONTENT], [SECTION_2_TITLE], [SECTION_2_CONTENT]\n\n\n\ninvoice.html - Invoice notification\n\nPlaceholders: [NAME], [INVOICE_NUMBER], [DATE], [AMOUNT], [DUE_DATE], [DESCRIPTION], [PAYMENT_URL], [SIGNATURE]\n\n\n\nwelcome.html - Welcome email with CTA\n\nPlaceholders: [NAME], [MESSAGE], [GET_STARTED_URL], [SIGNATURE]\n\n\n\nstatus-update.html - Project status update\n\nPlaceholders: [NAME], [PROJECT_NAME], [COMPLETED_ITEMS], [IN_PROGRESS_ITEMS], [BLOCKED_ITEMS], [NEXT_STEPS], [SIGNATURE]"
      },
      {
        "title": "Special Occasion Templates",
        "body": "jummah.html - Jummah Mubarak greeting\n\nPlaceholders: [NAME], [MESSAGE], [SIGNATURE]\nFeatures: Islamic greeting with blue gradient background\n\n\n\neid.html - Eid Mubarak greeting\n\nPlaceholders: [NAME], [MESSAGE], [SIGNATURE]\nFeatures: Green gradient background with Islamic blessings\n\n\n\nramadan.html - Ramadan Mubarak greeting\n\nPlaceholders: [NAME], [MESSAGE], [SIGNATURE]\nFeatures: Purple gradient background with Ramadan wishes\n\n\n\nbirthday.html - Birthday wishes\n\nPlaceholders: [NAME], [MESSAGE], [SIGNATURE]\nFeatures: Pink gradient background with celebration emojis\n\n\n\nanniversary.html - Anniversary wishes\n\nPlaceholders: [NAME], [MESSAGE], [SIGNATURE]\nFeatures: Pink-yellow gradient with romantic theme\n\n\n\ncongratulations.html - Congratulations message\n\nPlaceholders: [NAME], [MESSAGE], [SIGNATURE]\nFeatures: Gold-blue gradient with success theme\n\n\n\nthank-you.html - Thank you message\n\nPlaceholders: [NAME], [MESSAGE], [SIGNATURE]\nFeatures: Soft pastel gradient with gratitude theme\n\n\n\nnew-year.html - New Year wishes\n\nPlaceholders: [NAME], [MESSAGE], [YEAR], [SIGNATURE]\nFeatures: Purple gradient with celebration theme"
      },
      {
        "title": "Using Templates Directly",
        "body": "# Read template, replace placeholders, and send\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/basic.html)\nHTML=$(echo \"$TEMPLATE\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[MESSAGE\\]/Your message here/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\""
      },
      {
        "title": "Quick Examples",
        "body": "Basic email:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/basic.html)\nHTML=$(echo \"$TEMPLATE\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[MESSAGE\\]/Just wanted to check in on the project status./g' | sed 's/\\[SIGNATURE\\]/Sarah/g')\ngog gmail send --to john@example.com --subject \"Project Check-in\" --body-html \"$HTML\"\n\nMeeting invitation:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/meeting.html)\nHTML=$(echo \"$TEMPLATE\" | sed 's/\\[NAME\\]/Team/g' | sed 's/\\[TOPIC\\]/Q1 Planning/g' | sed 's/\\[DATE\\]/March 15, 2026/g' | sed 's/\\[TIME\\]/2:00 PM/g' | sed 's/\\[DURATION\\]/1 hour/g' | sed 's/\\[LOCATION\\]/Conference Room A/g' | sed 's/\\[SIGNATURE\\]/Alex/g')\ngog gmail send --to team@example.com --subject \"Q1 Planning Meeting\" --body-html \"$HTML\"\n\nEmail with button:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/button.html)\nHTML=$(echo \"$TEMPLATE\" | sed 's/\\[NAME\\]/Sarah/g' | sed 's/\\[MESSAGE\\]/Please review the latest document./g' | sed 's|\\[BUTTON_URL\\]|https://docs.example.com/report|g' | sed 's/\\[BUTTON_TEXT\\]/View Document/g' | sed 's/\\[SIGNATURE\\]/Mike/g')\ngog gmail send --to sarah@example.com --subject \"Document Review\" --body-html \"$HTML\"\n\nJummah Mubarak:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/jummah.html)\nHTML=$(echo \"$TEMPLATE\" | sed 's/\\[NAME\\]/Ahmed/g' | sed 's/\\[MESSAGE\\]/Wishing you a blessed Friday filled with peace and blessings./g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to ahmed@example.com --subject \"Jummah Mubarak\" --body-html \"$HTML\"\n\nEid Mubarak:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/eid.html)\nHTML=$(echo \"$TEMPLATE\" | sed 's/\\[NAME\\]/Family/g' | sed 's/\\[MESSAGE\\]/May this Eid bring joy, happiness, and prosperity to you and your loved ones./g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to family@example.com --subject \"Eid Mubarak\" --body-html \"$HTML\"\n\nBirthday wishes:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/birthday.html)\nHTML=$(echo \"$TEMPLATE\" | sed 's/\\[NAME\\]/Sarah/g' | sed 's/\\[MESSAGE\\]/Hope your special day is filled with joy, laughter, and wonderful memories!/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to sarah@example.com --subject \"Happy Birthday!\" --body-html \"$HTML\""
      },
      {
        "title": "Best Practices",
        "body": "Use template files - All templates are pre-formatted and tested\nSingle-line HTML - Templates are already single-line to avoid formatting issues\nInline CSS - All templates use inline styles for email client compatibility\nMax Width - Templates are set to 600px for optimal viewing\nSystem Fonts - Templates use -apple-system, BlinkMacSystemFont, Segoe UI, Roboto for best rendering\nTest First - Send to yourself before sending to recipients\nReplace all placeholders - Make sure to replace all [PLACEHOLDER] values with actual content"
      },
      {
        "title": "Customizing Templates",
        "body": "You can customize template colors, fonts, and styling by adding additional sed commands to replace CSS values."
      },
      {
        "title": "Common Customizations",
        "body": "Change gradient colors:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/birthday.html)\n# Replace pink gradient with blue gradient\nHTML=$(echo \"$TEMPLATE\" | sed 's/#f093fb/#4facfe/g' | sed 's/#f5576c/#00f2fe/g')\n# Then replace placeholders and send\nHTML=$(echo \"$HTML\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[MESSAGE\\]/Your message/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\"\n\nChange primary color:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/basic.html)\n# Change all blue (#007bff) to purple (#667eea)\nHTML=$(echo \"$TEMPLATE\" | sed 's/#007bff/#667eea/g')\nHTML=$(echo \"$HTML\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[MESSAGE\\]/Your message/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\"\n\nChange background color:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/highlight.html)\n# Change highlight box from light gray to light blue\nHTML=$(echo \"$TEMPLATE\" | sed 's/#f8f9fa/#e3f2fd/g')\nHTML=$(echo \"$HTML\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[MESSAGE\\]/Your message/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\"\n\nChange font size:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/basic.html)\n# Make heading larger (36px to 48px)\nHTML=$(echo \"$TEMPLATE\" | sed 's/font-size: 36px/font-size: 48px/g')\nHTML=$(echo \"$HTML\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[MESSAGE\\]/Your message/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\"\n\nChange layout alignment (left-align instead of center):\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/basic.html)\n# Remove centering: change \"margin: 0 auto\" to \"margin: 0\"\nHTML=$(echo \"$TEMPLATE\" | sed 's/margin: 0 auto/margin: 0/g')\nHTML=$(echo \"$HTML\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[MESSAGE\\]/Your message/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\""
      },
      {
        "title": "Color Palette Reference",
        "body": "Current template colors:\n\nBirthday (Pink):\n\nGradient: #f093fb → #f5576c\nHeading: #f5576c\n\nEid (Green):\n\nGradient: #11998e → #38ef7d\nHeading: #11998e\n\nJummah (Blue):\n\nGradient: #4facfe → #00f2fe\nHeading: #4facfe\n\nRamadan (Purple):\n\nGradient: #667eea → #764ba2\nHeading: #667eea\n\nAnniversary (Pink-Yellow):\n\nGradient: #fa709a → #fee140\nHeading: #fa709a\n\nCongratulations (Gold-Blue):\n\nGradient: #ffd89b → #19547b\nHeading: #19547b\n\nThank You (Pastel):\n\nGradient: #a8edea → #fed6e3\n\nNew Year (Purple):\n\nGradient: #667eea → #764ba2\nHeading: #667eea\n\nSuggested alternative palettes:\n\nOcean: #2E3192 → #1BFFFF\nSunset: #FF512F → #F09819\nForest: #134E5E → #71B280\nRoyal: #8E2DE2 → #4A00E0\nWarm: #FF6B6B → #FFE66D\nCool: #4ECDC4 → #556270"
      },
      {
        "title": "Advanced Customization",
        "body": "Multiple color changes:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/birthday.html)\n# Change to ocean theme\nHTML=$(echo \"$TEMPLATE\" | \\\n  sed 's/#f093fb/#2E3192/g' | \\\n  sed 's/#f5576c/#1BFFFF/g' | \\\n  sed 's/\\[NAME\\]/John/g' | \\\n  sed 's/\\[MESSAGE\\]/Your message/g' | \\\n  sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\"\n\nCreate custom template variant:\n\n# Save customized version as new template\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/birthday.html)\necho \"$TEMPLATE\" | sed 's/#f093fb/#2E3192/g' | sed 's/#f5576c/#1BFFFF/g' > workspace/skills/gog-html-email/templates/birthday-ocean.html\n# Now use the custom template\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/birthday-ocean.html)\nHTML=$(echo \"$TEMPLATE\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[MESSAGE\\]/Your message/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\""
      },
      {
        "title": "Notes",
        "body": "Templates are single-line HTML to prevent formatting issues\nFor complex layouts (tables, multiple sections), create a custom template file\nAlways test HTML emails in multiple clients (Gmail, Outlook, Apple Mail)\nUse plain text (--body) for simple messages without formatting needs"
      }
    ],
    "body": "gog-html-email\n\nEnhanced HTML email formatting for gog CLI with ready-to-use templates.\n\nHow to Send HTML Emails\n\nALWAYS use this exact workflow:\n\nRead the appropriate template file from workspace/skills/gog-html-email/templates/\nReplace placeholders using sed commands\nSend via gog gmail send --body-html\n\nExample:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/basic.html)\nHTML=$(echo \"$TEMPLATE\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[MESSAGE\\]/Your message here/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\"\n\n\nFor multi-paragraph messages:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/basic.html)\n# Replace [MESSAGE] with multiple <p> tags for proper spacing\nMESSAGE='<p style=\"margin: 0 0 16px 0;\">First paragraph.</p><p style=\"margin: 0 0 16px 0;\">Second paragraph.</p><p style=\"margin: 0 0 16px 0;\">Third paragraph.</p>'\nHTML=$(echo \"$TEMPLATE\" | sed \"s|\\[MESSAGE\\]|$MESSAGE|g\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\"\n\n\nDO NOT:\n\nManually construct HTML strings\nUse heredocs or multi-line strings\nInclude literal \\n characters in HTML\nPut multiple paragraphs in a single <p> tag\nTemplate Selection Guide\n\nChoose the right template based on the email purpose:\n\nBusiness/Professional:\n\nbasic.html - Simple professional emails\nmeeting.html - Meeting invitations (requires: NAME, TOPIC, DATE, TIME, DURATION, LOCATION, SIGNATURE)\nfollow-up.html - Follow-up emails\nstatus-update.html - Project updates\ninvoice.html - Invoices and payments\nbutton.html - Emails with call-to-action buttons\nnewsletter.html - Newsletters\n\nIslamic/Religious:\n\njummah.html - Friday greetings (Jummah Mubarak)\neid.html - Eid celebrations (Eid Mubarak)\nramadan.html - Ramadan greetings (Ramadan Mubarak)\n\nCelebrations:\n\nbirthday.html - Birthday wishes\nanniversary.html - Anniversary wishes\ncongratulations.html - Congratulations messages\nnew-year.html - New Year wishes (requires: NAME, MESSAGE, YEAR, SIGNATURE)\n\nOther:\n\nwelcome.html - Welcome new users\nthank-you.html - Thank you messages\nhighlight.html - Important announcements\nmulti-paragraph.html - Long-form content\nHTML Template Files\n\nAll templates are available in the templates/ directory. Each template uses placeholder variables in [BRACKETS] that you can replace with actual content.\n\nAvailable Templates\n\nbasic.html - Simple professional email\n\nPlaceholders: [NAME], [MESSAGE], [SIGNATURE]\n\nhighlight.html - Email with highlighted box\n\nPlaceholders: [NAME], [HIGHLIGHT_MESSAGE], [MESSAGE], [SIGNATURE]\n\nbutton.html - Email with call-to-action button\n\nPlaceholders: [NAME], [MESSAGE], [BUTTON_URL], [BUTTON_TEXT], [SIGNATURE]\n\nmulti-paragraph.html - Multiple paragraph email\n\nPlaceholders: [NAME], [PARAGRAPH_1], [PARAGRAPH_2], [PARAGRAPH_3], [SIGNATURE]\n\nmeeting.html - Meeting invitation\n\nPlaceholders: [NAME], [TOPIC], [DATE], [TIME], [DURATION], [LOCATION], [SIGNATURE]\n\nfollow-up.html - Follow-up email\n\nPlaceholders: [NAME], [TOPIC], [MESSAGE], [SIGNATURE]\n\nnewsletter.html - Newsletter format\n\nPlaceholders: [NEWSLETTER_TITLE], [DATE], [SECTION_1_TITLE], [SECTION_1_CONTENT], [SECTION_2_TITLE], [SECTION_2_CONTENT]\n\ninvoice.html - Invoice notification\n\nPlaceholders: [NAME], [INVOICE_NUMBER], [DATE], [AMOUNT], [DUE_DATE], [DESCRIPTION], [PAYMENT_URL], [SIGNATURE]\n\nwelcome.html - Welcome email with CTA\n\nPlaceholders: [NAME], [MESSAGE], [GET_STARTED_URL], [SIGNATURE]\n\nstatus-update.html - Project status update\n\nPlaceholders: [NAME], [PROJECT_NAME], [COMPLETED_ITEMS], [IN_PROGRESS_ITEMS], [BLOCKED_ITEMS], [NEXT_STEPS], [SIGNATURE]\nSpecial Occasion Templates\n\njummah.html - Jummah Mubarak greeting\n\nPlaceholders: [NAME], [MESSAGE], [SIGNATURE]\nFeatures: Islamic greeting with blue gradient background\n\neid.html - Eid Mubarak greeting\n\nPlaceholders: [NAME], [MESSAGE], [SIGNATURE]\nFeatures: Green gradient background with Islamic blessings\n\nramadan.html - Ramadan Mubarak greeting\n\nPlaceholders: [NAME], [MESSAGE], [SIGNATURE]\nFeatures: Purple gradient background with Ramadan wishes\n\nbirthday.html - Birthday wishes\n\nPlaceholders: [NAME], [MESSAGE], [SIGNATURE]\nFeatures: Pink gradient background with celebration emojis\n\nanniversary.html - Anniversary wishes\n\nPlaceholders: [NAME], [MESSAGE], [SIGNATURE]\nFeatures: Pink-yellow gradient with romantic theme\n\ncongratulations.html - Congratulations message\n\nPlaceholders: [NAME], [MESSAGE], [SIGNATURE]\nFeatures: Gold-blue gradient with success theme\n\nthank-you.html - Thank you message\n\nPlaceholders: [NAME], [MESSAGE], [SIGNATURE]\nFeatures: Soft pastel gradient with gratitude theme\n\nnew-year.html - New Year wishes\n\nPlaceholders: [NAME], [MESSAGE], [YEAR], [SIGNATURE]\nFeatures: Purple gradient with celebration theme\nUsing Templates Directly\n# Read template, replace placeholders, and send\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/basic.html)\nHTML=$(echo \"$TEMPLATE\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[MESSAGE\\]/Your message here/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\"\n\nQuick Examples\n\nBasic email:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/basic.html)\nHTML=$(echo \"$TEMPLATE\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[MESSAGE\\]/Just wanted to check in on the project status./g' | sed 's/\\[SIGNATURE\\]/Sarah/g')\ngog gmail send --to john@example.com --subject \"Project Check-in\" --body-html \"$HTML\"\n\n\nMeeting invitation:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/meeting.html)\nHTML=$(echo \"$TEMPLATE\" | sed 's/\\[NAME\\]/Team/g' | sed 's/\\[TOPIC\\]/Q1 Planning/g' | sed 's/\\[DATE\\]/March 15, 2026/g' | sed 's/\\[TIME\\]/2:00 PM/g' | sed 's/\\[DURATION\\]/1 hour/g' | sed 's/\\[LOCATION\\]/Conference Room A/g' | sed 's/\\[SIGNATURE\\]/Alex/g')\ngog gmail send --to team@example.com --subject \"Q1 Planning Meeting\" --body-html \"$HTML\"\n\n\nEmail with button:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/button.html)\nHTML=$(echo \"$TEMPLATE\" | sed 's/\\[NAME\\]/Sarah/g' | sed 's/\\[MESSAGE\\]/Please review the latest document./g' | sed 's|\\[BUTTON_URL\\]|https://docs.example.com/report|g' | sed 's/\\[BUTTON_TEXT\\]/View Document/g' | sed 's/\\[SIGNATURE\\]/Mike/g')\ngog gmail send --to sarah@example.com --subject \"Document Review\" --body-html \"$HTML\"\n\n\nJummah Mubarak:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/jummah.html)\nHTML=$(echo \"$TEMPLATE\" | sed 's/\\[NAME\\]/Ahmed/g' | sed 's/\\[MESSAGE\\]/Wishing you a blessed Friday filled with peace and blessings./g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to ahmed@example.com --subject \"Jummah Mubarak\" --body-html \"$HTML\"\n\n\nEid Mubarak:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/eid.html)\nHTML=$(echo \"$TEMPLATE\" | sed 's/\\[NAME\\]/Family/g' | sed 's/\\[MESSAGE\\]/May this Eid bring joy, happiness, and prosperity to you and your loved ones./g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to family@example.com --subject \"Eid Mubarak\" --body-html \"$HTML\"\n\n\nBirthday wishes:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/birthday.html)\nHTML=$(echo \"$TEMPLATE\" | sed 's/\\[NAME\\]/Sarah/g' | sed 's/\\[MESSAGE\\]/Hope your special day is filled with joy, laughter, and wonderful memories!/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to sarah@example.com --subject \"Happy Birthday!\" --body-html \"$HTML\"\n\nBest Practices\nUse template files - All templates are pre-formatted and tested\nSingle-line HTML - Templates are already single-line to avoid formatting issues\nInline CSS - All templates use inline styles for email client compatibility\nMax Width - Templates are set to 600px for optimal viewing\nSystem Fonts - Templates use -apple-system, BlinkMacSystemFont, Segoe UI, Roboto for best rendering\nTest First - Send to yourself before sending to recipients\nReplace all placeholders - Make sure to replace all [PLACEHOLDER] values with actual content\nCustomizing Templates\n\nYou can customize template colors, fonts, and styling by adding additional sed commands to replace CSS values.\n\nCommon Customizations\n\nChange gradient colors:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/birthday.html)\n# Replace pink gradient with blue gradient\nHTML=$(echo \"$TEMPLATE\" | sed 's/#f093fb/#4facfe/g' | sed 's/#f5576c/#00f2fe/g')\n# Then replace placeholders and send\nHTML=$(echo \"$HTML\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[MESSAGE\\]/Your message/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\"\n\n\nChange primary color:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/basic.html)\n# Change all blue (#007bff) to purple (#667eea)\nHTML=$(echo \"$TEMPLATE\" | sed 's/#007bff/#667eea/g')\nHTML=$(echo \"$HTML\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[MESSAGE\\]/Your message/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\"\n\n\nChange background color:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/highlight.html)\n# Change highlight box from light gray to light blue\nHTML=$(echo \"$TEMPLATE\" | sed 's/#f8f9fa/#e3f2fd/g')\nHTML=$(echo \"$HTML\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[MESSAGE\\]/Your message/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\"\n\n\nChange font size:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/basic.html)\n# Make heading larger (36px to 48px)\nHTML=$(echo \"$TEMPLATE\" | sed 's/font-size: 36px/font-size: 48px/g')\nHTML=$(echo \"$HTML\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[MESSAGE\\]/Your message/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\"\n\n\nChange layout alignment (left-align instead of center):\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/basic.html)\n# Remove centering: change \"margin: 0 auto\" to \"margin: 0\"\nHTML=$(echo \"$TEMPLATE\" | sed 's/margin: 0 auto/margin: 0/g')\nHTML=$(echo \"$HTML\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[MESSAGE\\]/Your message/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\"\n\nColor Palette Reference\n\nCurrent template colors:\n\nBirthday (Pink):\n\nGradient: #f093fb → #f5576c\nHeading: #f5576c\n\nEid (Green):\n\nGradient: #11998e → #38ef7d\nHeading: #11998e\n\nJummah (Blue):\n\nGradient: #4facfe → #00f2fe\nHeading: #4facfe\n\nRamadan (Purple):\n\nGradient: #667eea → #764ba2\nHeading: #667eea\n\nAnniversary (Pink-Yellow):\n\nGradient: #fa709a → #fee140\nHeading: #fa709a\n\nCongratulations (Gold-Blue):\n\nGradient: #ffd89b → #19547b\nHeading: #19547b\n\nThank You (Pastel):\n\nGradient: #a8edea → #fed6e3\n\nNew Year (Purple):\n\nGradient: #667eea → #764ba2\nHeading: #667eea\n\nSuggested alternative palettes:\n\nOcean: #2E3192 → #1BFFFF\nSunset: #FF512F → #F09819\nForest: #134E5E → #71B280\nRoyal: #8E2DE2 → #4A00E0\nWarm: #FF6B6B → #FFE66D\nCool: #4ECDC4 → #556270\nAdvanced Customization\n\nMultiple color changes:\n\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/birthday.html)\n# Change to ocean theme\nHTML=$(echo \"$TEMPLATE\" | \\\n  sed 's/#f093fb/#2E3192/g' | \\\n  sed 's/#f5576c/#1BFFFF/g' | \\\n  sed 's/\\[NAME\\]/John/g' | \\\n  sed 's/\\[MESSAGE\\]/Your message/g' | \\\n  sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\"\n\n\nCreate custom template variant:\n\n# Save customized version as new template\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/birthday.html)\necho \"$TEMPLATE\" | sed 's/#f093fb/#2E3192/g' | sed 's/#f5576c/#1BFFFF/g' > workspace/skills/gog-html-email/templates/birthday-ocean.html\n# Now use the custom template\nTEMPLATE=$(cat workspace/skills/gog-html-email/templates/birthday-ocean.html)\nHTML=$(echo \"$TEMPLATE\" | sed 's/\\[NAME\\]/John/g' | sed 's/\\[MESSAGE\\]/Your message/g' | sed 's/\\[SIGNATURE\\]/Your Name/g')\ngog gmail send --to recipient@example.com --subject \"Subject\" --body-html \"$HTML\"\n\nNotes\nTemplates are single-line HTML to prevent formatting issues\nFor complex layouts (tables, multiple sections), create a custom template file\nAlways test HTML emails in multiple clients (Gmail, Outlook, Apple Mail)\nUse plain text (--body) for simple messages without formatting needs"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/syedair/gog-html-email",
    "publisherUrl": "https://clawhub.ai/syedair/gog-html-email",
    "owner": "syedair",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/gog-html-email",
    "downloadUrl": "https://openagent3.xyz/downloads/gog-html-email",
    "agentUrl": "https://openagent3.xyz/skills/gog-html-email/agent",
    "manifestUrl": "https://openagent3.xyz/skills/gog-html-email/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/gog-html-email/agent.md"
  }
}