49-html-email-template-global

49-html-email-template-global is a skill for Claude Code from minhnv0807/ai-business-skills. It costs 167 tokens per session (2,486 once invoked), scanned A, original, MIT.

A set of rules for building responsive HTML email that displays consistently across Gmail, Apple Mail, Outlook, Yahoo, and mobile screens. It produces a self-contained file for email platforms such as Klaviyo or Mailchimp.

In plain words
What is it for?
It helps create welcome emails, newsletters, promotional emails, nurture sequences, and transactional emails with reliable structure and a pre-send checklist.
Why use it?
Email programs support different parts of HTML and CSS, so ordinary website code can break or display incorrectly. These rules address layout, dark mode, buttons, and client-specific quirks before sending.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the ai-business-skills plugin — 144 skills, 6 agents, 10 MCP servers shipped together

Good fit It helps create welcome emails, newsletters, promotional emails, nurture sequences, and transactional emails with reliable structure and a pre-send checklist.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/minhnv0807/ai-business-skills/49-html-email-template-global
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add minhnv0807/ai-business-skills --skill 49-html-email-template-global
Clone the repo
git clone --depth 1 https://github.com/minhnv0807/ai-business-skills

Made for: Claude Code.

Or install ai-business-skills, the plugin that ships this one along with the rest of its 144 skills, 6 agents, 10 MCP servers.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for 49-html-email-template-global

README.md
[![agentmods](https://agentmods.dev/badge/skills/minhnv0807/ai-business-skills/49-html-email-template-global/github.svg)](https://agentmods.dev/skills/minhnv0807/ai-business-skills/49-html-email-template-global)
Your own site
<a href="https://agentmods.dev/skills/minhnv0807/ai-business-skills/49-html-email-template-global"><img src="https://agentmods.dev/badge/skills/minhnv0807/ai-business-skills/49-html-email-template-global/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for 49-html-email-template-global

Your own site · 80×15
<a href="https://agentmods.dev/skills/minhnv0807/ai-business-skills/49-html-email-template-global"><img src="https://agentmods.dev/badge/skills/minhnv0807/ai-business-skills/49-html-email-template-global.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 167 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,486 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00167 $0.02486
Opus 5 $0.00084 $0.01243
Sonnet 5 $0.00033 $0.00497
Haiku 4.5 $0.00017 $0.00249

Measured 9d ago against content hash 7b66231f9f04, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

49-html-email-template-global scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/en/49-html-email-template-global/SKILL.md · 169 lines

How it starts

The opening of the file, as written. The whole thing — 169 lines — stays where its author put it; the contents beside it link to each section on GitHub.

HTML Email Template (Global)

Email HTML is not web HTML: it needs table layout, inline CSS, and avoidance of everything clients do not support. The bar is simple — it looks right in Gmail, Apple Mail, Outlook, and Yahoo, and it reads on a 375px phone. No exceptions. Content and sequence come from 14-email-marketing-global; this skill handles the code.

Information gathering

Read the brand guideline (46-brand-guideline-global) and the email content from 14-email-marketing-global if available. If information is missing, ask up to 4 questions:

  1. Email type and layout? Welcome, broadcast, nurture, offer, or transactional — single column, two columns with a product image, or a multi-section newsletter?
  2. Which sections? Header, hero, body, social proof, CTA, footer — is there a hero image?
  3. Is the copy written? Or should the template ship with placeholders? Where does the primary CTA link?
  4. Which ESP sends it? Klaviyo, Mailchimp, HubSpot, Brevo, Braze, or other — merge tag syntax differs per platform.

Principles

  1. Table layout only — no div/flexbox/grid/float/position:absolute. Outlook on Windows renders through the Word engine and does not support them.
  2. Inline all CSS. Gmail can strip <style> blocks; keep only media queries and dark-mode rules in <style>, and inline everything else.
  3. 600px maximum width, degrading to 375px.
  4. System-font fallbacks: '[body font]', Arial, Helvetica, sans-serif. Never depend on a web font — many clients will not load it.
  5. Every img needs alt text plus width and height attributes so a blocked-image inbox still reads correctly.
  6. Unsubscribe link and a physical postal address are legally required (CAN-SPAM in the US, GDPR and PECR in the EU/UK, CASL in Canada). Honor opt-outs promptly.
  7. Test on mobile first. The majority of opens are on a phone.
  8. One self-contained .html file, under 100KB — Gmail clips messages past roughly 102KB.

Workflow

1. Choose the layout

Read the full file on GitHub · 169 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 169 lines · 167 tokens per session scan A 7b66231f9f04

Subscribe to this mod's changes

49-html-email-template-global is a skill published in the GitHub repository minhnv0807/ai-business-skills (572 stars, last pushed 26d ago), licensed MIT. It adds 167 tokens to every session and 2,486 once invoked, about $0.0008 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.