Minify Email Code

Use the minify option to trim down the HTML size of your production emails.

Minified email code weighs less in KB, resulting in faster sendouts, faster opens, and bandwidth savings on limited mobile data plans. Every little bit helps 🙂

Additionally, it reduces the risk of Gmail clipping.


Maizzle uses html-crush and exposes its options to your config.

Simply enabling it is enough to get you started with email-safe code minification:

// config.production.js
module.exports = {
  minify: true
}

Of course, you can customize the html-crush options:

module.exports = {
  minify: {
    lineLengthLimit: 500,
    removeIndentations: true,
    breakToTheLeftOf: []
  }
}

Checkout the full list of html-crush options.