It's 2017 and we are still stuck with HTML tables to create rich emails. Why? It seems reasonable to leverage the hard work behind the modern browser engines (ie. blink), when all you want is to render an HTML document properly.
Why don't email clients use modern rendering engines?
4.4k Views Asked by AudioBubble At
1
There are 1 best solutions below
Related Questions in HTML
- Delay in loading Html Page(WebView) from assets folder in real android device
- Why does a function show up as not defined
- CSS Class is not applying to element (border width,color,and style attributes)
- How to sort these using Javascript or Jquery Most effectively
- how to fill out the table with next values in array with one button
- Automatically closing tags in form input?
- Positioning child at bottom of parent with scroll
- Remove added set of rows
- Website zoomed out on Android default browser
- Twitter Bootstrap horizontal form elements on a line
- http://sigmajs.org/ les mis tutorial - why are my canvases 0 height?
- My navbar is not expanding after collapse
- when a checkbox is checked how to display a different hidden element using javascript
- Gaps Vertically Using Dividers
- Svg containers not positioning properly
Related Questions in HTML-EMAIL
- PHP email shows html source code in Apple Mail
- Html Email Template on Android not responsive
- This message has been modified to fit your screen. Tap here to show original
- Empty HTML mails in outlook.com, microsoft exchange & hotmail.com
- HTML Email Design with Nested Tables
- RoR send email with html template
- SVG background image not showing in Mailchimp template
- Send email with template (Mandrill JSON)
- Mailchimp's ckeditor, limiting design options in the editor
- Sending email through AJAX calculated column
- Add Facebook Profile Picture to an email signature
- Centering responsive email in iphone 6
- responsive images max-width property in newsletter email
- Removing cell padding (email purposes)
- Float table elements using only html/css
Related Questions in EMAIL-CLIENT
- Why I cannot use Gmail configuration for Zimbra mail?
- Mail listener ocassionally fails to authenticate
- why two table in one row not working in html email template for outlook?
- Why don't email clients use modern rendering engines?
- Send email in C# without configuring username and password
- Gmail shows download icon on images of HTML Email
- Java: How do I get user's email with box api v2
- Is it possible to send email without JDK?
- HTML mailto subject and body display plus sign(+) instead of space in mail client
- convert mail to xml
- How are cookies handled by email clients?
- Spanish characters in email appearing as question mark in mail clients
- Email Client doesn't open attachment but will download and open
- download gmail contacts
- Is there a simple way of sending an email with attachments using the default mail client?
Related Questions in BLINK
- Chrome and Opera refuse to transition from flex: 0 to flex: 1
- Show different text on blink using Javascript?
- Why don't email clients use modern rendering engines?
- Css fade-in-out blinking
- WordPress Blink Codes Doesn't Work
- Blinking SWT Window in Windows 7 taskbar
- Complex selector don't work in last blink version :nth-child(2):nth-last-child(2){}
- How to detect Blink in Chrome
- How to detect mouse click position in jquery
- Blink1 mk2 Chrome connectivity via WEBUSB API Light Blink Issue
- flash text for three seconds
- Blinking and coloring asp.net label control
- Span element not updating correctly
- How to extract frames from video using webcodecs from chrome 86
- CSS: multiple images blinking effect, one after another
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Update: Since this question was closed and my answer resembles a blog post, I published an updated version on Medium.
Email clients use rendering engines appropriate for displaying emails. This is not always in step with displaying web pages.
Only a small % of email users care about HTML/CSS support. Think email marketers and developers. The vast majority of email users simply want a simple, secure way of sending and receiving rich text messages with other people. That’s what email clients are designed for.
Even more advanced users don’t often cite good HTML/CSS support as a top concern. Recent innovations give us a little insight as to what folks are frustrated with regarding email clients: help managing incoming messages, more security, less SPAM, and overall ease of use.
No one cares if it takes developers a long time to use
<tables>and inline CSS to create an email. When it comes to changing how emails are rendered… “If it’s not broke, why fix it?” When email clients actually do update rendering, it’s rarely news outside of the tech community. Few people care.Consider Desktop Outlook, which typically comes bundled with programs like Word and Powerpoint. All these programs have a similar interface and display output. If you can author a Word document, there’s almost no learning curve in writing an email in Outlook. That’s huge for a lot of people. In all likelihood, Outlook’s rendering engine wasn’t chosen based on it’s ability to render an HTML document properly, yet the product is still considered a success. Because desktop Outlook and doesn’t get automatic updates, old versions (that we have to code for) tend to hang around.
Fun fact: Outlook 2000-2003 rendered email using whatever version of Internet Explorer was installed locally the computer to render email (usually Internet Explorer 6).
Gmail is another example. While Gmail has pretty good HTML/CSS support, it didn’t support external CSS files until late 2016. Gmail (unofficially) cited security as one of the reasons. I don’t know what keeps the Gmail team up at night, but I bet it’s not how email developers can’t optimize their email layouts. I bet it’s security. And so that’s where the gmail dev work gets focused.
Overall email clients do their job relatively well. Since HTML/CSS support matters to so few people, changing it is likely not often a priority for product teams that make email clients.
However, things are trending in the right direction. Gmail and Yahoo! app began supporting media queries in most of their products. Outlook on iOS got a huge facelift including good markup support. New email clients that crop up (Mailbox, Nylus. Polymail) generally have good HTML/CSS support compared to the web. Rarely does support go backwards. The majority of clients based on market share use “modern rendering engines”.
Additionally we can always reference our own email analytics. Don’t have many Outlook subscribers? Then code an email using
<div>s. Don’t need to support every mobile client? Then usemedia-queries.