Best Practices for Email Template Designing help create effective HTML emails while considering spam filters and varying email client support.
Spam Filter Compliance: Design emails to avoid triggering spam filters.
Email Client Compatibility: Ensure readability across different email platforms.
Limited Interactive Elements: Avoid Flash, JavaScript, and HTML forms for better inbox compatibility.
Following these guidelines ensures well-structured, accessible, and functional email templates.
To design and manage email templates in Meritto, ensure that you have:
Access to the Communications Module within Meritto CRM.
Permissions to create, edit, and send emails (granted by an Admin or a user with relevant access rights).
Proper CNAME mapping to maintain sender domain reputation and prevent email deliverability issues.
Meritto’s Email Template Designer enables you to:
Use Tables When Possible
Forget divs and floats. Better to use tables which are the most reliable way to achieve a consistent layout. Tables also allow you to replicate something that many email clients otherwise don’t allow: floats (okay, not really CSS floats). With tables, you can take advantage of the align attribute, which was the predecessor of modern CSS floats.
When using align=”left”, tables will stack on top of each other on smaller screens. This technique is the basis of responsive and fluid design. It works like this: You have two tables that are each 300px wide with align=”left” inside the same container. If the screen is 600 or more pixels wide (as it would be for most desktop clients) then the tables will appear side by side. If the screen is only 400px wide, then the two tables will stack on top of each other.
Nested tables are totally safe, so feel free to nest away. You can also use colspan and rowspan, as long as you count your columns and rows carefully. Also do not send any meta tags and doctype when you send your emails (Email client do for you) means only send your mailer content. Some supported tags in html for all email clients as:
<a>,<b>,<br>,<div>,<font>,<h1>,<h6>,<hr>,<img>,<label>,<ul>,<li>,<ol>,<p>,<span>,<strong>,<table>,<tr>,<th>,<td>,<u>
Also Use Nested tables to create your mailer layout
Bulletproof CTA Buttons
It’s painful trying to achieve the perfect cross client button. As mentioned above you should be using tables and table cells for everything like below:
<table border="0" cellspacing="0" cellpadding="0" style="border- collapse:separate;width:auto; padding-bottom: 15px; margin-left: auto; margin-right: auto;">
<tr>
<td align="center" valign="top" style="vertical-align: top; text-align: center;
background: #1271db;">
<a href="#" style="color: #ffffff; text-decoration: none; cursor: pointer; display: inline- block; font-size: 14px; font-weight: bold; text-transform: capitalize; background: #1271db;
margin: 0; padding: 12px 25px; border: 1px solid #1271db;">Click Here</a>
</td>
</tr>
</table>
A leading university using Meritto’s CRM noticed that 40% of their bulk emails were landing in spam due to excessive images and improper email formatting. After implementing Meritto’s best practices—including text-to-image balance, inline styles, and CNAME setup—their email open rates improved by 35%, and click-through rates increased by 20% within three months.
Designing effective email templates requires a structured, mobile-friendly approach with proper coding techniques. By following Meritto’s best practices, you can enhance readability, maintain consistent branding, and ensure high deliverability across all email clients. Adopting a text-to-image balance, bulletproof CTA buttons, and inline styles will result in better user engagement and conversion rates.