SlideShare a Scribd company logo
Troubleshooting Email
Like a Pro
#LitmusLive
Get the Resources
You can find the slides, examples, and more at:
litmus.com/lp/troubleshooting-boston
#LitmusLive
Wifi: LitmusLive Password: weloveemail
Jaina Mistry
Email Marketing Specialist, Litmus
@jainamistry
Jason Rodriguez
Product Manager, Litmus
@rodriguezcommaj
Here's the Plan
Agenda
• 8:15 - Background Info
• 8:45 - Troubleshooting Workflows
• 9:10 - Common Bugs & Fixes
• 10:00 - BREAK
• 10:20 - Quick Review
• 10:30 - Exercise Time
• 11:00 - Email Optimization
• 11:30 - Q&A Session
• 12:00 - LUNCH
Why Problems Happen
or The Crazy State of Email Rendering
— Me, now
“Email is unique.”
✔ Iterative
✔ Testable
✔ Personal
✔ Forgettable
The problem with email
client icons background
IMAP & POP
WebDav
Exchange
Domino
Preprocessor
Trident (IE)
WebKit
Gecko
MS Word
Inbox
Server Sanitization Rendering Inbox View
The Rendering Pipeline
Troubleshooting Email Like a Pro
THERE ARE
NO STANDARDS
WEB ≠ EMAIL
EMAIL DESIGN WEB DESIGN
<table> <div>
<td> <h1>
<td> <p>
px em
style=“” <style>
bgcolor background-color
padding margin
EMAIL DESIGN WEB DESIGN
#ffffff #fff rgba hsa
individual properties shorthand
width=“100” width: 100px;
align=“left” text-align: left;
style=“” <style>
HTML & CSS
Refresher
All emails consist of:
HTML and CSS
Tags
<a> <h1> <table>
Attributes
width="" cellpadding=""
HTML = Structure and content
Rules
padding color font-family
Values
100px #333333 sans-serif
CSS = Style and Manipulation
Most of your problems will come
from issues with your code.
At least the ones you can fix.
A Guide to
Troubleshooting
Determining What's Going On
Email Troubleshooting 101
1. Test your email
2. Check your images
3. Check your HTML
4. Ask for help
Test Your Email
Step 1
During Development
(in browser, in Builder, do
test sends (PutsMail))
During Development
(in browser, in Builder, do
test sends (PutsMail))
Troubleshooting Email Like a Pro
Troubleshooting Email Like a Pro
Step 2
Check Your Images
Troubleshooting Email Like a Pro
Images in Email Require:
1. Absolute paths
2. Publicly accessible servers
Relative Path
<img src="/img/img.jpg">
Absolute Path
<img src="http://example.com/img/img.jpg">
Troubleshooting Email Like a Pro
Check the File Name
Check the File Type
JPG PNG GIF SVG TIFF
Image not displayed.
Check Your HTML
Step 3
Isolate the Problem
Highlight Tables
<table cellpadding="0" cellspacing="0" border="1">
<tr>
<td></td>
</tr>
</table>
Remove Other Sections
HEADER
HERO SECTION
CTA BLOCK
FOOTER
Reintroduce Components
HEADER
HERO SECTION
CTA BLOCK
FOOTER
Modularity FTW
HEADER
HERO SECTION
CTA BLOCK
FOOTER
+
+
+
Check Syntax Issues
Common Syntax Issues:
1. Missing tags
2. Incorrect tags & values
3. Lack of HTML/CSS support
validator.w3.org
campaignmonitor.com/css
caniuse.com
Check Default
Behavior
Override Client Defaults
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td></td>
</tr>
</table>
Override Client Defaults
<body style="margin: 0; padding: 0;">
Check the Math
+ =
Outlook Math
See What Clients are
Doing to Your HTML
Troubleshooting Email Like a Pro
Ask for Help
Step 4
litmus.com/community/discussions
Helpful Hashtags:
#emaildesign
#emailmarketing
#emailgeeks
#litmuscommunity
#litmuslive
email.geeks.chat
Common Bugs
and How to Fix Them
Issues with Images
Missing ImagesImage not displayed.
Blocked Images
Prevent Collapsing
<img src="" width="600" height="200">
Alternative Text
<img src="" width="600" height="200"
alt="20% off coupon">
ALT Text Guidelines:
1. Include on most images
2. Keep empty for non-essential images
3. Keep it short
4. Can be styled using inline CSS
Cached Images
table flip, what can you
do?
(╯°□°)╯︵ ┻━┻
Troubleshooting Email Like a Pro
Removing Download Button
<a href="https://litmus.com">
<img src="" width="600" height="200"
alt="20% off coupon">
</a>
Troubleshooting Email Like a Pro
Removing Borders
<a href="litmus.com">
<img src="" width="600" height="200"
alt="20% off coupon" border="0">
</a>
Gaps around Images
Removing Gaps
<a href="litmus.com">
<img src="" width="600" height="200"
alt="20% off coupon" border="0"
style="display: block;">
</a>
Where is my
background
image?
Where is my
background
image?
Background Images
1. Not supported everywhere
(Outlooks, Gmail IMAP)
2. Can use VML for Outlooks
3. Always use fallback colors
Animated GIF Isn’t
Animating
Issues with Text and Links
Text Not Aligning
Properly
Ensure Alignment
<td align="left"></td>
<td align="center"></td>
<td align="right"></td>
Lorem ipsum dolor sit amet,
consectetur adipisicing elit.
Tempora harum maiores totam
possimus vero. Quaerat nemo
maxime fugit quas aliquam
earum amet sequi omnis nihil,
quos ipsam quasi, reiciendis
repudiandae?
Lorem ipsum dolor sit amet,
consectetur adipisicing elit.
Tempora harum maiores totam
possimus vero. Quaerat nemo
maxime fugit quas aliquam
earum amet sequi omnis nihil,
quos ipsam quasi, reiciendis
repudiandae?
Use MSO Conditional CSS
<!--[if mso]>
<style type="text/css">
body, table, td {font-family: Arial,
Helvetica, sans-serif !important;}
</style>
<![endif]-->
Blank Media Query FTW
@media screen {
@font-face {
/* FONT DECLARATIONS */
}
}
Troubleshooting Email Like a Pro
Wrap Suspect Text
.nolink {
text-color: #c0c0c0; text-decoration: none;
}
<span class=“nolink”>866-787-7030</span>
Use a CSS Reset
<style>
a[x-apple-data-detectors] {
color: inherit !important;
text-decoration: none !important;
font-size: inherit !important;
font-family: inherit !important;
font-weight: inherit !important;
line-height: inherit !important;
}
</style>
Special Symbols
£$€&© etc.
HTML Lists Don’t Look
Right
This is a list of information:
Item One
Item Two
Item Three
Item Four
This is a list of information:
• Item One
• Item Two
• Item Three
• Item Four
More Random Stuff
Full Email Not Shown
in Gmail
Full Email Not Shown
in Gmail102kb
Clipping in Gmail
What if tables look
bigger than expected?
Check Default
Behavior
Override Client Defaults
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td></td>
</tr>
</table>
Override Client Defaults
<body style="margin: 0; padding: 0;">
Break
Anyone else thirsty?
Quick Refresh
What have we learned so far?
These guys cause a
lot of problems…
IMAP & POP
WebDav
Exchange
Domino
Preprocessor
Trident (IE)
WebKit
Gecko
MS Word
Inbox
Server Sanitization Rendering Inbox View
The Rendering Pipeline
THERE ARE
NO STANDARDS
Understanding
what's supported where
is your first line of defense.
Email Troubleshooting 101
1. Test your email
2. Check your images
3. Check your HTML
4. Ask for help
Exercises
Let's look at some code…
The Plan:
1. Quick assignment
2. A few clues
3. 3 minutes of troubleshooting
4. Review
Exercise #1
Fix the Missing Images
Hints:
https://img.litmuscdn.com/images/next/illustrations
File Formats
Exercise #2
Fix the Layout
Hint:
Exercise #3
Fix the Blue Links
Hints:
HTML Classes
Style Resets
Exercise #4
Fix the Responsive Layout 1
Hints:
See if something's missing…
Exercise #5
Fix the Responsive Layout 2
Hints:
See if something's wrong…
Exercise #6
Fix the Styles in Gmail
Hints:
[ hey="wtf" ]
Your Own Emails
Who's brave?
Q&A Time
Anything we missed?
Lunch Time
Let's eat!

More Related Content

PDF
Troubleshooting Email Like a Pro
PDF
Everything You Need to Know About Gmail Rendering
PDF
Slicing the web
PPT
Advance Css 1194323118268797 5
PPT
Advance Css
PDF
Tools and Tips For Data Warehouse Developers (SQLSaturday Slovenia)
KEY
Getting to Grips with Firebug - Anthony Hortin - WordCamp Sydney
PPT
Css Founder.com | Cssfounder Org
Troubleshooting Email Like a Pro
Everything You Need to Know About Gmail Rendering
Slicing the web
Advance Css 1194323118268797 5
Advance Css
Tools and Tips For Data Warehouse Developers (SQLSaturday Slovenia)
Getting to Grips with Firebug - Anthony Hortin - WordCamp Sydney
Css Founder.com | Cssfounder Org

What's hot (7)

PDF
xhtml_basics
PDF
Getting to grips with firebug
PDF
CSS3 Ready for Primetime
PDF
Class 4 handout two column layout w mobile web design
PDF
Class 3 create an absolute layout with css abs position (aptana)
PDF
Creating simple php contact form
PDF
There's a shortcut for that! SSMS Tips and Tricks (Denver SQL)
xhtml_basics
Getting to grips with firebug
CSS3 Ready for Primetime
Class 4 handout two column layout w mobile web design
Class 3 create an absolute layout with css abs position (aptana)
Creating simple php contact form
There's a shortcut for that! SSMS Tips and Tricks (Denver SQL)
Ad

Similar to Troubleshooting Email Like a Pro (20)

PDF
Troubleshooting Email Like a Pro
PPTX
Interactive Responsive Emails - Creative ways to innovate in email development
PPT
PPT
css.ppt
PPT
HTML Web Devlopment presentation css.ppt
PPT
Web development basics (Part-1)
DOCX
Caracteristicas Basicas De Htlm
PPT
Making Your Site Look Great in IE7
PDF
Introduction to web development
PDF
Email dssign rules
PPT
Introduction to web design
PPTX
PPTX
INTRODUCTION TO HTML & CSS .pptx
PPTX
1812010023 web developement(ANKITA OJHA)CSE4(A).pptx
PPTX
HTML CSS and Web Development
PPTX
FFW Gabrovo PMG - HTML
PPT
PPTX
HTML.pptx
PPTX
Hyper Text Markup Language - Presentation.pptx
PDF
Html css
Troubleshooting Email Like a Pro
Interactive Responsive Emails - Creative ways to innovate in email development
css.ppt
HTML Web Devlopment presentation css.ppt
Web development basics (Part-1)
Caracteristicas Basicas De Htlm
Making Your Site Look Great in IE7
Introduction to web development
Email dssign rules
Introduction to web design
INTRODUCTION TO HTML & CSS .pptx
1812010023 web developement(ANKITA OJHA)CSE4(A).pptx
HTML CSS and Web Development
FFW Gabrovo PMG - HTML
HTML.pptx
Hyper Text Markup Language - Presentation.pptx
Html css
Ad

More from Litmus (20)

PDF
Litmus Live 2018 Workshop: Reinvent Your Email Workflow
PPTX
The Trends Transforming the Email Service Provider Landscape
PDF
Engaging Users with High-Performance Design
PDF
Litmus Live 2018: Reinvent Your Email Workflow
PPTX
Email Workflows that Work: 5 Trends to Help You Build Better Emails Faster
PDF
The State of Email in 2018: 5 Insights from the Litmus Marketing Team
PPTX
The Best of the 2017 State of Email Survey Research Series
PPTX
5 Embarrassing Subject Line Mistakes to Avoid
PPTX
Email Tactics Customers Hate and Why Marketers Continue to Use Them
PPTX
Email Marketing Kickoff for 2018
PPTX
The Top 5 Opportunities for Improving Your Email Creative
PPTX
20 Things Successful Email Marketing Programs Do
PPTX
The Root of Poor Email Deliverability
PPTX
8 Embarrassing Preview Text Mistakes + 4 Tips on How to Avoid Making Them
PPTX
Building Successful Email Workflows
PDF
Webinar: State of Email 2017
PDF
The biggest email marketing myths
PDF
10 Things Travel Brands Should Know About Their Email Subscribers
PPTX
3 Embarrassing Subject Line Mistakes to Avoid
PPTX
The State of Email 2016 - Year in Review
Litmus Live 2018 Workshop: Reinvent Your Email Workflow
The Trends Transforming the Email Service Provider Landscape
Engaging Users with High-Performance Design
Litmus Live 2018: Reinvent Your Email Workflow
Email Workflows that Work: 5 Trends to Help You Build Better Emails Faster
The State of Email in 2018: 5 Insights from the Litmus Marketing Team
The Best of the 2017 State of Email Survey Research Series
5 Embarrassing Subject Line Mistakes to Avoid
Email Tactics Customers Hate and Why Marketers Continue to Use Them
Email Marketing Kickoff for 2018
The Top 5 Opportunities for Improving Your Email Creative
20 Things Successful Email Marketing Programs Do
The Root of Poor Email Deliverability
8 Embarrassing Preview Text Mistakes + 4 Tips on How to Avoid Making Them
Building Successful Email Workflows
Webinar: State of Email 2017
The biggest email marketing myths
10 Things Travel Brands Should Know About Their Email Subscribers
3 Embarrassing Subject Line Mistakes to Avoid
The State of Email 2016 - Year in Review

Recently uploaded (20)

PDF
NewMind AI Monthly Chronicles - July 2025
PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Mobile App Security Testing_ A Comprehensive Guide.pdf
PDF
Encapsulation theory and applications.pdf
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Encapsulation_ Review paper, used for researhc scholars
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPTX
A Presentation on Artificial Intelligence
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
KodekX | Application Modernization Development
PDF
Unlocking AI with Model Context Protocol (MCP)
PDF
Modernizing your data center with Dell and AMD
NewMind AI Monthly Chronicles - July 2025
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
Reach Out and Touch Someone: Haptics and Empathic Computing
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Mobile App Security Testing_ A Comprehensive Guide.pdf
Encapsulation theory and applications.pdf
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Encapsulation_ Review paper, used for researhc scholars
Understanding_Digital_Forensics_Presentation.pptx
Diabetes mellitus diagnosis method based random forest with bat algorithm
A Presentation on Artificial Intelligence
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
CIFDAQ's Market Insight: SEC Turns Pro Crypto
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
“AI and Expert System Decision Support & Business Intelligence Systems”
KodekX | Application Modernization Development
Unlocking AI with Model Context Protocol (MCP)
Modernizing your data center with Dell and AMD

Troubleshooting Email Like a Pro