Summary of principles for writing HTML pages for emails

Summary of principles for writing HTML pages for emails
Since HTML email is not an independent HOST page on this site, it is hosted by someone else. So writing HTML emails is very different from writing HTML pages. This is because all mainstream email services for Internet users will more or less filter the HTML emails they receive in the background. There is no doubt that JS code is strictly filtered out, including all event monitoring attributes such as onclick and onmouseover. This is based on email security considerations. Not only that, CSS code will also be partially filtered. What I want to talk about is how to write HTML emails that are not filtered by major mainstream mailboxes and can be displayed normally.

First, let's take a look at how the mailbox displays HTML emails. I have never worked on an email system, and the filtering algorithms behind the major email systems are not so easy for outsiders to know. Therefore, we can only infer which writing methods are accepted by the mailbox and which ones will be filtered out through the front-end display. Through the analysis of gmail, hotmail, 163, sohu, sina, I divide the mailboxes into two categories:

The first category includes gmail, hotmail, and sohu. For this type of mailbox, the email content is laid out in a div in the entire mailbox page. As shown in the figure:


The second category includes 163 and sina. In this type of mailbox, the email content is laid out in an independent iframe. As shown in the figure:

Friends who are familiar with HTML know that the iframe content is an independent document, which is unrelated to the elements and CSS of the parent page and can be treated almost as an independent page. If the email content is in a div, then the email content is an integral part of the entire mailbox page. Obviously, emails that use iframe as a display method will be much more tolerant of email content because it gives you a sufficiently independent display space. The div is not so polite. Imagine if you wrote this CSS in your email, would the font size on the entire email page become 20px and become a mess:
<style type="text/css">
body {font-size:20px}
</style>
If we need to write a unified email template that is compatible with all mailboxes, we must avoid the above external CSS writing method. In addition, styles such as float and position that form abnormal content flows will also be filtered. If you write them, it is likely to affect the performance of external mailboxes.


Here are some writing principles:
1. One of the global rules is, do not write <style> tags, do not write classes, all CSS use style attributes, and use style to write inline CSS for elements that require certain styles.

2. The second global rule is to use fewer pictures. The mailbox will not filter your img tags, but the system will often default to not loading pictures from unfamiliar emails. If an email uses a lot of pictures, it will be ugly and even the content cannot be seen clearly if the pictures are not loaded. Impatient users will delete it directly. Always add alt to images.

3. Do not write float, position and other styles in the style, because they will be filtered. So how to achieve left-right layout or more complex layout? Use table.

4. The background color can be set in the style content, but the img will be filtered, which means that the background image cannot be set through CSS. But there is a very interesting element attribute, also called background, which can define an image path. This is a good alternative. Although the function is limited, for example, the background image cannot be positioned, it is better than nothing. For example, to add a background to a cell, you must write:
<td background=”http://image1.koubei.com/images/common/logo_koubei.gif”></td>

5. The div mode mailbox does not support flash, and the iframe mode mailbox needs to be verified.

Finally, I would like to mention that Sohu's email is very strange. It will add a space after each text paragraph, causing the normal layout to not fit on one line and to wrap, thus making some layouts messed up. Therefore, if you want to be compatible with Sohu Mail, you must be extra careful when encountering some compact layouts, try to reduce the number of text segments and leave enough width.

<<:  JavaScript Dom Object Operations

>>:  Mobile development tutorial: Summary of pixel display issues

Recommend

Let you understand the deep copy of js

Table of contents js deep copy Data storage metho...

Detailed explanation of HTML area tag

The <area> tag defines an area in an image ...

npm Taobao mirror modification explanation

1. Top-level usage 1. Install cnpm npm i -g cnpm ...

How to understand JavaScript modularity

Table of contents 1. Browser support 2. export ex...

How to quickly deploy Redis as a Docker container

Table of contents getting Started Data storage Co...

Common commands for mysql authorization, startup, and service startup

1. Four startup methods: 1.mysqld Start mysql ser...

How to get datetime data in mysql, followed by .0

The data type of MySQL is datetime. The data stor...

Solve the problem of IDEA configuring tomcat startup error

The following two errors were encountered when co...

Vue+swiper realizes timeline effect

This article shares the specific code of vue+swip...

Solve the error "Can't locate ExtUtils/MakeMaker.pm in @INC"

When installing mha4mysql, the steps are roughly:...

5 ways to quickly remove the blank space of Inline-Block in HTML

The inline-block property value becomes very usef...

Sharing experience on the priority of CSS style loading

During the project development yesterday, I encoun...

Docker build PHP environment tutorial detailed explanation

Docker installation Use the official installation...

Using css-loader to implement css module in vue-cli

【Foreword】 Both Vue and React's CSS modular s...