SlideShare a Scribd company logo
Troubleshooting Email
Like a Pro
#LitmusLive
Get the Resources
You can find the slides, examples, and more at:
pages.litmus.com/troubleshooting-san-francisco
#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;">
Unwanted Preview
Text
Troubleshooting Email Like a Pro
&zwnj;
zero-width non-joiner
&nbsp;&zwnj;
= width of 1 character
Hide Unwanted Preview Text
<div style="display: none; max-height: 0px; overflow:hidden;”>
<!--Insert hidden preheader text here-->
</div>
<!-- Insert &zwnj;&nbsp; hack after hidden preview text -->
<div style="display: none; max-height: 0px; overflow:
hidden;">&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp
;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&zwnj;&nbsp;&
zwnj;&nbsp;&zwnj;&nbsp;</div>
Troubleshooting Email Like a Pro
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
PDF
Tools and Tips For Data Warehouse Developers (SQLSaturday Slovenia)
PPT
Advance Css
PPT
Advance Css 1194323118268797 5
PDF
Getting to grips with firebug
PDF
xhtml_basics
Troubleshooting Email Like a Pro
Everything You Need to Know About Gmail Rendering
Slicing the web
Tools and Tips For Data Warehouse Developers (SQLSaturday Slovenia)
Advance Css
Advance Css 1194323118268797 5
Getting to grips with firebug
xhtml_basics

Similar to Troubleshooting Email Like a Pro (20)

PDF
Troubleshooting Email Like a Pro
PPTX
How to Make Email Awesome: Digital Summit Charlotte 2015
PDF
Wait. What just happened to my email?
PDF
Best Practices in Email Design & Development: HighRoad Solution Workshop
PDF
33 "Must-Do" Tips to Improve HTML Email Design
PDF
WebSG - HTML Email Newsletters
PDF
Responsive HTML Email
PDF
HTML Email: How not to feel 'boxed in'
PDF
Email Design Workshop - Don't Let Bad Email Code Ruin Your Day or Your Results
PDF
Common email display issues - a guide for email marketers
PPTX
HTML Email Best Practice
PPTX
Creative Guidelines
PDF
Justine Jordan | SearchLove San Diego, 'Designed for Success: Optimizing The ...
PDF
Building the impossible - Emails
PPT
Know Before it Goes: Testing Your Email Design
PPTX
Designed for Success: Optimizing the Email Experience
PDF
Samples - web design, blog posts, and infographics
PDF
Email Faux Pas
PPT
Online Marketing Education Series 1
PDF
Brunch & Learn: Email Design Best Practices for Desktop, Mobile, Tablet & Beyond
Troubleshooting Email Like a Pro
How to Make Email Awesome: Digital Summit Charlotte 2015
Wait. What just happened to my email?
Best Practices in Email Design & Development: HighRoad Solution Workshop
33 "Must-Do" Tips to Improve HTML Email Design
WebSG - HTML Email Newsletters
Responsive HTML Email
HTML Email: How not to feel 'boxed in'
Email Design Workshop - Don't Let Bad Email Code Ruin Your Day or Your Results
Common email display issues - a guide for email marketers
HTML Email Best Practice
Creative Guidelines
Justine Jordan | SearchLove San Diego, 'Designed for Success: Optimizing The ...
Building the impossible - Emails
Know Before it Goes: Testing Your Email Design
Designed for Success: Optimizing the Email Experience
Samples - web design, blog posts, and infographics
Email Faux Pas
Online Marketing Education Series 1
Brunch & Learn: Email Design Best Practices for Desktop, Mobile, Tablet & Beyond
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
Ad

Recently uploaded (20)

PPTX
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PPTX
Pharma ospi slides which help in ospi learning
PPTX
PPH.pptx obstetrics and gynecology in nursing
PPTX
BOWEL ELIMINATION FACTORS AFFECTING AND TYPES
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PDF
RMMM.pdf make it easy to upload and study
PPTX
Renaissance Architecture: A Journey from Faith to Humanism
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
01-Introduction-to-Information-Management.pdf
PPTX
master seminar digital applications in india
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PPTX
Week 4 Term 3 Study Techniques revisited.pptx
PPTX
Cell Types and Its function , kingdom of life
PDF
VCE English Exam - Section C Student Revision Booklet
PPTX
Cell Structure & Organelles in detailed.
PDF
O7-L3 Supply Chain Operations - ICLT Program
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
Introduction to Child Health Nursing – Unit I | Child Health Nursing I | B.Sc...
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Module 4: Burden of Disease Tutorial Slides S2 2025
Pharma ospi slides which help in ospi learning
PPH.pptx obstetrics and gynecology in nursing
BOWEL ELIMINATION FACTORS AFFECTING AND TYPES
FourierSeries-QuestionsWithAnswers(Part-A).pdf
RMMM.pdf make it easy to upload and study
Renaissance Architecture: A Journey from Faith to Humanism
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
01-Introduction-to-Information-Management.pdf
master seminar digital applications in india
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
Week 4 Term 3 Study Techniques revisited.pptx
Cell Types and Its function , kingdom of life
VCE English Exam - Section C Student Revision Booklet
Cell Structure & Organelles in detailed.
O7-L3 Supply Chain Operations - ICLT Program
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student

Troubleshooting Email Like a Pro