Email Design
When to Use
Use this skill as needed to perform the specified automation task.
Design high-converting marketing emails with AI-generated visuals via inference.sh CLI.
Quick Start
curl -fsSL https://cli.inference.sh | sh && infsh login
# Generate email header banner
infsh app run infsh/html-to-image --input '{
"html": "<div style=\"width:600px;height:250px;background:linear-gradient(135deg,#667eea,#764ba2);display:flex;align-items:center;justify-content:center;font-family:system-ui;color:white;text-align:center\"><div><h1 style=\"font-size:36px;margin:0\">Spring Sale — 30% Off</h1><p style=\"font-size:18px;opacity:0.9\">This weekend only</p></div></div>"
}'
Email Width & Layout
| Constraint |
Value |
Why |
| Max width |
600px |
Gmail, Outlook rendering standard |
| Mobile width |
320-414px |
Responsive fallback |
| Single column |
Preferred |
Better mobile rendering |
| Two column |
Use sparingly |
Breaks on many clients |
| Image width |
600px max, 300px for 2-col |
Retina: provide 2x (1200px) |
| Font size (body) |
14-16px |
Below 14px is hard to read on mobile |
| Font size (heading) |
22-28px |
Must be scannable |
| Line height |
1.5 |
Readability on all devices |
The Inverted Pyramid Layout
The most effective email layout funnels attention to a single CTA:
┌──────────────────────────────────┐
│ HEADER IMAGE │ ← Brand/visual hook
│ (600 x 200-300) │
├──────────────────────────────────┤
│ │
│ Headline (one line) │ ← What's this about
│ │
│ 2-3 sentences of body copy │ ← Why should I care
│ explaining the value. │
│ │
│ ┌──────────────┐ │
│ │ CTA BUTTON │ │ ← One clear action
│ └──────────────┘ │
│ │
├──────────────────────────────────┤
│ Footer: Unsubscribe link │
└──────────────────────────────────┘
Subject Lines
Formulas That Work
| Formula |
Example |
Open Rate Impact |
| Number + benefit |
"5 ways to cut your build time in half" |
High |
| Question |
"Are you still deploying on Fridays?" |
High |
| How-to |
"How to automate your reports in 3 steps" |
Medium-High |
| Urgency (genuine) |
"Last day: 30% off annual plans" |
High (if real) |
| Personalized |
"[Name], your weekly report is ready" |
Very High |
| Curiosity gap |
"The one feature our users can't stop talking about" |
Medium-High |
Rules
| Rule |
Value |
| Length |
30-50 characters (mobile truncates at ~35) |
| Preview text |
First 40-100 chars after subject — design this intentionally |
| Emoji |
Max 1, at start or end, test with your audience |
| ALL CAPS |
Never — triggers spam filters |
| Spam trigger words |
Avoid: "free", "act now", "limited time", "click here" in subject |
| Personalization |
[First name] in subject lifts open rates 20%+ |
Preview Text
The preview text appears after the subject line in the inbox. Don't waste it.
❌ "View this email in your browser" (default, wasted space)
❌ "Having trouble viewing this?" (no one cares)
✅ Subject: "5 ways to cut build time"
Preview: "Number 3 saved us 6 hours per week"
✅ Subject: "Your monthly report is ready"
Preview: "Revenue up 23% — here's what drove it"
Email Types
Welcome Email (Automated, Day 0)
| Element |
Content |
| Subject |
"Welcome to [Product] — here's what's next" |
| Header |
Brand image or product screenshot |
| Body |
3-4 sentences: what they signed up for, what to expect, one quick win |
| CTA |
"Complete your setup" or "Try your first [action]" |
| Timing |
Immediately after signup |
Promotional / Campaign
| Element |
Content |
| Subject |
Benefit-focused, urgency if real |
| Header |
Hero image showing the offer/outcome |
| Body |
Problem → solution → offer → deadline |
| CTA |
"Get 30% Off" or "Start Free Trial" |
| Urgency |
Real deadline, not fake scarcity |
Product Update / Changelog
| Element |
Content |
| Subject |
"New: [Feature name] is here" |
| Header |
Screenshot or visual of the feature |
| Body |
What's new, why it matters, how to use it |
| CTA |
"Try [feature]" |
Transactional (Receipts, Confirmations)
| Rule |
Why |
| Clear purpose in subject |
"Your order #1234 is confirmed" |
| Minimal design |
Don't confuse with marketing |
| Key info above the fold |
Order number, amount, date |
| No promotional content (mostly) |
CAN-SPAM allows some, but keep minimal |
Header Image Design
# Welcome email header
infsh app run infsh/html-to-image --input '{
"html": "<div style=\"width:600px;height:250px;background:linear-gradient(135deg,#2d3436,#636e72);display:flex;align-items:center;padding:40px;font-family:system-ui;color:white\"><div><p style=\"font-size:14px;text-transform:uppercase;letter-spacing:2px;opacity:0.7;margin:0\">Welcome to</p><h1 style=\"font-size:42px;margin:8px 0 0;font-weight:800\">DataFlow</h1><p style=\"font-size:18px;opacity:0.8;margin-top:4px\">Your data, automated</p></div></div>"
}'
# Sale / promotional header
infsh app run infsh/html-to-image --input '{
"html": "<div style=\"width:600px;height:300px;background:linear-gradient(135deg,#e74c3c,#c0392b);display:flex;align-items:center;justify-content:center;font-family:system-ui;color:white;text-align:center\"><div><p style=\"font-size:20px;opacity:0.9;margin:0\">This Weekend Only</p><h1 style=\"font-size:72px;margin:8px 0;font-weight:900\">30% OFF</h1><p style=\"font-size:18px;opacity:0.8\">All annual plans. Ends Sunday.</p></div></div>"
}'
# Feature announcement header with AI visual
infsh app run falai/flux-dev-lora --input '{
"prompt": "clean modern email header banner, abstract flowing data visualization, dark blue gradient background, subtle glowing nodes and connections, tech aesthetic, minimal, no text, 600x250 equivalent",
"width": 1200,
"height": 500
}'
CTA Buttons
| Rule |
Value |
| Width |
200-300px, not full width |
| Height |
44-50px minimum (tap target) |
| Color |
High contrast with background |
| Text |
Action verb + outcome: "Start Free Trial" |
| Shape |
Rounded corners (4-8px border-radius) |
| Placement |
Above the fold, repeated at bottom for long emails |
| Quantity |
ONE primary CTA per email |
Bulletproof Buttons
HTML buttons render differently across email clients. Use the "bulletproof button" technique (VML for Outlook, HTML/CSS for everything else):
<!-- Bulletproof button (works everywhere including Outlook) -->
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td align="center" bgcolor="#22c55e" style="border-radius:6px;">
<a href="https://yoursite.com/action" target="_blank"
style="font-size:16px;font-family:sans-serif;color:#ffffff;
text-decoration:none;padding:12px 24px;display:inline-block;
font-weight:bold;">
Start Free Trial
</a>
</td>
</tr>
</table>
Mobile Optimization
| Rule |
Why |
| Single column layout |
Multi-column breaks on mobile |
| Font minimum 14px |
Smaller is unreadable |
| CTA button minimum 44px tall |
Apple/Android tap target |
| Images scale to 100% width |
Prevent horizontal scroll |
| Stack elements vertically |
Side-by-side breaks on narrow screens |
| Test on Gmail app, Apple Mail, Outlook |
The big 3 email clients |
60%+ of emails are opened on mobile. Design mobile-first.
Deliverability Checklist
| Factor |
Rule |
| Image-to-text ratio |
Max 40% images, 60% text (spam filters flag image-heavy emails) |
| Alt text on images |
Always — images blocked by default in many clients |
| Unsubscribe link |
Required by law (CAN-SPAM, GDPR) — make it easy to find |
| From name |
Recognizable person or brand name |
| Reply-to |
Real address, not no-reply@ (hurts deliverability) |
| List hygiene |
Remove bounces, clean inactive subscribers quarterly |
| SPF/DKIM/DMARC |
Technical authentication — set up once, critical for inbox |
Common Mistakes
| Mistake |
Problem |
Fix |
| No preview text |
Shows "View in browser" or random code |
Set preview text intentionally |
| Image-only emails |
Blocked images = blank email + spam risk |
60%+ text, alt text on images |
| Multiple CTAs |
Decision paralysis, lower click rate |
One primary CTA per email |
| Tiny text |
Unreadable on mobile |
Minimum 14px body, 22px headings |
| no-reply@ sender |
Hurts deliverability, feels impersonal |
Use real reply address |
| No mobile testing |
Broken layout for 60%+ of readers |
Test on Gmail app + Apple Mail |
| Missing unsubscribe |
Illegal (CAN-SPAM) + spam complaints |
Clear unsubscribe link in footer |
| Over-designing |
Email clients render CSS inconsistently |
Simple layouts, inline styles |
| Fake urgency |
Erodes trust, trains users to ignore |
Only use real deadlines |
Related Skills
npx skills add inference-sh/skills@landing-page-design
npx skills add inference-sh/skills@ai-image-generation
npx skills add inference-sh/skills@prompt-engineering
Browse all apps: infsh app list
1---2name: email-design3description: Email marketing design with layout patterns, subject line formulas, and deliverability rules. Covers welcome sequences, promotional emails, transactional templates, and mobile optimization. Use for: email marketing, newsletter design, drip campaigns, email templates, transactional emails. ...4license: MIT5---6# Email Design78## When to Use910Use this skill as needed to perform the specified automation task.1112Design high-converting marketing emails with AI-generated visuals via [inference.sh](https://inference.sh) CLI.1314## Quick Start1516```bash17curl -fsSL https://cli.inference.sh | sh && infsh login1819# Generate email header banner20infsh app run infsh/html-to-image --input '{21 "html": "<div style=\"width:600px;height:250px;background:linear-gradient(135deg,#667eea,#764ba2);display:flex;align-items:center;justify-content:center;font-family:system-ui;color:white;text-align:center\"><div><h1 style=\"font-size:36px;margin:0\">Spring Sale — 30% Off</h1><p style=\"font-size:18px;opacity:0.9\">This weekend only</p></div></div>"22}'23```2425## Email Width & Layout2627| Constraint | Value | Why |28|-----------|-------|-----|29| **Max width** | 600px | Gmail, Outlook rendering standard |30| **Mobile width** | 320-414px | Responsive fallback |31| **Single column** | Preferred | Better mobile rendering |32| **Two column** | Use sparingly | Breaks on many clients |33| **Image width** | 600px max, 300px for 2-col | Retina: provide 2x (1200px) |34| **Font size (body)** | 14-16px | Below 14px is hard to read on mobile |35| **Font size (heading)** | 22-28px | Must be scannable |36| **Line height** | 1.5 | Readability on all devices |3738### The Inverted Pyramid Layout3940The most effective email layout funnels attention to a single CTA:4142```43┌──────────────────────────────────┐44│ HEADER IMAGE │ ← Brand/visual hook45│ (600 x 200-300) │46├──────────────────────────────────┤47│ │48│ Headline (one line) │ ← What's this about49│ │50│ 2-3 sentences of body copy │ ← Why should I care51│ explaining the value. │52│ │53│ ┌──────────────┐ │54│ │ CTA BUTTON │ │ ← One clear action55│ └──────────────┘ │56│ │57├──────────────────────────────────┤58│ Footer: Unsubscribe link │59└──────────────────────────────────┘60```6162## Subject Lines6364### Formulas That Work6566| Formula | Example | Open Rate Impact |67|---------|---------|-----------------|68| Number + benefit | "5 ways to cut your build time in half" | High |69| Question | "Are you still deploying on Fridays?" | High |70| How-to | "How to automate your reports in 3 steps" | Medium-High |71| Urgency (genuine) | "Last day: 30% off annual plans" | High (if real) |72| Personalized | "[Name], your weekly report is ready" | Very High |73| Curiosity gap | "The one feature our users can't stop talking about" | Medium-High |7475### Rules7677| Rule | Value |78|------|-------|79| **Length** | 30-50 characters (mobile truncates at ~35) |80| **Preview text** | First 40-100 chars after subject — design this intentionally |81| **Emoji** | Max 1, at start or end, test with your audience |82| **ALL CAPS** | Never — triggers spam filters |83| **Spam trigger words** | Avoid: "free", "act now", "limited time", "click here" in subject |84| **Personalization** | [First name] in subject lifts open rates 20%+ |8586### Preview Text8788The preview text appears after the subject line in the inbox. Don't waste it.8990```91❌ "View this email in your browser" (default, wasted space)92❌ "Having trouble viewing this?" (no one cares)9394✅ Subject: "5 ways to cut build time"95 Preview: "Number 3 saved us 6 hours per week"9697✅ Subject: "Your monthly report is ready"98 Preview: "Revenue up 23% — here's what drove it"99```100101## Email Types102103### Welcome Email (Automated, Day 0)104105| Element | Content |106|---------|---------|107| Subject | "Welcome to [Product] — here's what's next" |108| Header | Brand image or product screenshot |109| Body | 3-4 sentences: what they signed up for, what to expect, one quick win |110| CTA | "Complete your setup" or "Try your first [action]" |111| Timing | Immediately after signup |112113### Promotional / Campaign114115| Element | Content |116|---------|---------|117| Subject | Benefit-focused, urgency if real |118| Header | Hero image showing the offer/outcome |119| Body | Problem → solution → offer → deadline |120| CTA | "Get 30% Off" or "Start Free Trial" |121| Urgency | Real deadline, not fake scarcity |122123### Product Update / Changelog124125| Element | Content |126|---------|---------|127| Subject | "New: [Feature name] is here" |128| Header | Screenshot or visual of the feature |129| Body | What's new, why it matters, how to use it |130| CTA | "Try [feature]" |131132### Transactional (Receipts, Confirmations)133134| Rule | Why |135|------|-----|136| Clear purpose in subject | "Your order #1234 is confirmed" |137| Minimal design | Don't confuse with marketing |138| Key info above the fold | Order number, amount, date |139| No promotional content (mostly) | CAN-SPAM allows some, but keep minimal |140141## Header Image Design142143```bash144# Welcome email header145infsh app run infsh/html-to-image --input '{146 "html": "<div style=\"width:600px;height:250px;background:linear-gradient(135deg,#2d3436,#636e72);display:flex;align-items:center;padding:40px;font-family:system-ui;color:white\"><div><p style=\"font-size:14px;text-transform:uppercase;letter-spacing:2px;opacity:0.7;margin:0\">Welcome to</p><h1 style=\"font-size:42px;margin:8px 0 0;font-weight:800\">DataFlow</h1><p style=\"font-size:18px;opacity:0.8;margin-top:4px\">Your data, automated</p></div></div>"147}'148149# Sale / promotional header150infsh app run infsh/html-to-image --input '{151 "html": "<div style=\"width:600px;height:300px;background:linear-gradient(135deg,#e74c3c,#c0392b);display:flex;align-items:center;justify-content:center;font-family:system-ui;color:white;text-align:center\"><div><p style=\"font-size:20px;opacity:0.9;margin:0\">This Weekend Only</p><h1 style=\"font-size:72px;margin:8px 0;font-weight:900\">30% OFF</h1><p style=\"font-size:18px;opacity:0.8\">All annual plans. Ends Sunday.</p></div></div>"152}'153154# Feature announcement header with AI visual155infsh app run falai/flux-dev-lora --input '{156 "prompt": "clean modern email header banner, abstract flowing data visualization, dark blue gradient background, subtle glowing nodes and connections, tech aesthetic, minimal, no text, 600x250 equivalent",157 "width": 1200,158 "height": 500159}'160```161162## CTA Buttons163164| Rule | Value |165|------|-------|166| **Width** | 200-300px, not full width |167| **Height** | 44-50px minimum (tap target) |168| **Color** | High contrast with background |169| **Text** | Action verb + outcome: "Start Free Trial" |170| **Shape** | Rounded corners (4-8px border-radius) |171| **Placement** | Above the fold, repeated at bottom for long emails |172| **Quantity** | ONE primary CTA per email |173174### Bulletproof Buttons175176HTML buttons render differently across email clients. Use the "bulletproof button" technique (VML for Outlook, HTML/CSS for everything else):177178```html179<!-- Bulletproof button (works everywhere including Outlook) -->180<table cellpadding="0" cellspacing="0" border="0">181 <tr>182 <td align="center" bgcolor="#22c55e" style="border-radius:6px;">183 <a href="https://yoursite.com/action" target="_blank"184 style="font-size:16px;font-family:sans-serif;color:#ffffff;185 text-decoration:none;padding:12px 24px;display:inline-block;186 font-weight:bold;">187 Start Free Trial188 </a>189 </td>190 </tr>191</table>192```193194## Mobile Optimization195196| Rule | Why |197|------|-----|198| Single column layout | Multi-column breaks on mobile |199| Font minimum 14px | Smaller is unreadable |200| CTA button minimum 44px tall | Apple/Android tap target |201| Images scale to 100% width | Prevent horizontal scroll |202| Stack elements vertically | Side-by-side breaks on narrow screens |203| Test on Gmail app, Apple Mail, Outlook | The big 3 email clients |204205**60%+ of emails are opened on mobile.** Design mobile-first.206207## Deliverability Checklist208209| Factor | Rule |210|--------|------|211| Image-to-text ratio | Max 40% images, 60% text (spam filters flag image-heavy emails) |212| Alt text on images | Always — images blocked by default in many clients |213| Unsubscribe link | Required by law (CAN-SPAM, GDPR) — make it easy to find |214| From name | Recognizable person or brand name |215| Reply-to | Real address, not no-reply@ (hurts deliverability) |216| List hygiene | Remove bounces, clean inactive subscribers quarterly |217| SPF/DKIM/DMARC | Technical authentication — set up once, critical for inbox |218219## Common Mistakes220221| Mistake | Problem | Fix |222|---------|---------|-----|223| No preview text | Shows "View in browser" or random code | Set preview text intentionally |224| Image-only emails | Blocked images = blank email + spam risk | 60%+ text, alt text on images |225| Multiple CTAs | Decision paralysis, lower click rate | One primary CTA per email |226| Tiny text | Unreadable on mobile | Minimum 14px body, 22px headings |227| no-reply@ sender | Hurts deliverability, feels impersonal | Use real reply address |228| No mobile testing | Broken layout for 60%+ of readers | Test on Gmail app + Apple Mail |229| Missing unsubscribe | Illegal (CAN-SPAM) + spam complaints | Clear unsubscribe link in footer |230| Over-designing | Email clients render CSS inconsistently | Simple layouts, inline styles |231| Fake urgency | Erodes trust, trains users to ignore | Only use real deadlines |232233## Related Skills234235```bash236npx skills add inference-sh/skills@landing-page-design237npx skills add inference-sh/skills@ai-image-generation238npx skills add inference-sh/skills@prompt-engineering239```240241Browse all apps: `infsh app list`