Email design system guide

Using a modular approach to design your branded marketing emails

Example of an email template broken apart into modules.

This guide will help you use a modular template approach to your email's design and code, with a reusable framework for a more efficient workflow. It will improve the quality and consistency of your campaigns while saving you time on common, repeatable email production workflows.

While setting up an email design system requires some up-front work, it simplifies your day to day workflow, saving you a lot of time in the long run.

Below are the areas covered, in two sections: design, and code.

An email design system helps with

  • Last minute requests
  • Reusability of assets
  • Design inconsistencies
  • Reducing work hours from adding up

Designing emails modularly

Your company brand should have a style guide for all communications, both visually for your creatives and verbally for your copy. A modular email template would utilize the style guide and go even further in keeping your campaigns consistent in tone, quality, and overall user experience.

Using a master template

A template should use modular self-contained pieces, typically consisting of:

Marketing email template pieces
  • Content pieces in an email template Content
    Text pieces and images
  • Components in an email template Components
    Standalone elements like buttons and titles; should work by themselves in a range of contexts
  • Layouts in an email template Regions
    Groups of content and components; arranged a specific way, usually as columns
  • Sections in an email template Sections
    Stackable containers between the header and footer, used to create an overall layout

Components are the building blocks of your content and should work by themselves in a range of contexts. Regions are content pieces and components arranged in a specific way. And, Sections are full-width horizontal containers stacked on top of each other to create an overall layout.

Keep this hierarchy in mind and introduce it to your team as you design and build your templates. Having an underlying foundation allows everyone to better organize what they're already doing and essentially speak the same language throughout your email's workflow.

Example modular template

Some elements that make up an email template and how they work modularly.

Modular email template example
Modular email template mobile example

Email design tips

Modular mindset

Using images

Visual accessibility

Email types

Strategy, design, and content tips for various categories of emails sent out.

Essential components - a collection of modules used on a variety of common email types
Starter email components →

Modular design techniques

Design inspiration

Coding your design for reuse

Choose the approach for coding your master email template that you're most comfortable with. Learn by example by looking at other people's code. Take advantage of libraries, template systems, and frameworks.

Image properties

Accessibility

Mobile responsive

Add to global styles to make adjustments:

@media (max-width: 480px) { }

480px breakpoint accounts for mobile devices with larger screens.

Dark mode

Tell email clients your preferred dark mode settings, for the ones that follow it:

<meta name="color-scheme" content="light dark">

light dark means both are supported.
light only means only light styling is.

And within the CSS:

:root {
  color-scheme: light dark;

Then make adjustments in your CSS using the dark mode media query:

@media (prefers-color-scheme: dark) { }

Note that some email clients, like Outlook and Gmail, force dark mode by automatically inverting background colors and text and ignore these declarations.

Preview text

Add after opening body tag:

<div style="display: none">Short line
of preview text goes here</div>

Template coding techniques

Advanced features

Improving your dev workflow

Testing

Email coding courses

Managing your design system

Utilizing the benefits of a modular template for your campaign design and code allows for better management of your overall content production workflow.

Make it collaborative

You should continue to evolve your design based on the needs of your marketing team and your organization. Get feedback from your team on how they are using your components to make any necessary tweaks, or to come up with new components.

Related reading

Your template as a tool

This guide has been put together by the Blocks Edit team. Having a modular template designed and coded, Blocks Edit is a visual editor that makes your template editable so your content team can build and edit emails and landing pages on their own. It works around your template's structure and code, allowing you to set only editing options that follow brand guidelines, and don't mess with your code.

Share this guide

Send via email | Copy link URL