If you’ve ever had Gmail clip one of your newsletters with that “[Message clipped]” link at the bottom, you know it’s frustrating. Not only does it look bad, but it can actually break your tracking pixels and cut off your footer (including your unsubscribe link, which is kind of important).
The Email Love Figma plugin shows you your file size right in the preview screen, so you can catch this issue before you send. And if you are over the limit, there are a couple of straightforward ways to fix it.
This guide covers:
- Why Gmail clips emails (and why you should care)
- How to check your file size in the plugin
- Two methods to reduce file size. One takes about 5 minutes, the other takes 30 seconds.
- Some tips for keeping your emails efficient from the start
It’s worth noting that image file size does not impact email file size. The email file size is determined by the amount of HTML used in your email.
Checking Your Email File Size
When you preview your email in the plugin, look at the top right corner of the preview screen. You’ll see the current file size displayed in kilobytes (e.g., “21 KB”). Rule of thumb: Aim to keep your emails under 95 KB to give yourself some buffer room.Method 1: Optimize Your MJML Structure in Figma
The Email Love plugin uses MJML, an email framework that structures your design using wrappers, sections, and columns. Understanding this structure helps you build more efficient emails.Understanding MJML Structure
- Wrapper: The container/table for your email section
- Section: The row within the wrapper (think of this as a horizontal slice)
- Column: The vertical divisions within a section (you can have up to 4 columns)
- Content: Images, text, and buttons live inside columns
Method 2: Minify Your HTML Code
Minification removes all unnecessary spaces and line breaks from your HTML code without changing how it renders. This is a common practice that can reduce file size by 15-20%.Using the Built-In Minification Button
Enable minification
The plugin will automatically strip unnecessary spaces and line breaks from your HTML.
Important Notes About Minification
- The code will look harder to read (no spaces or line breaks), but it renders exactly the same way in email clients
- You can always export without minification if you prefer readable code for troubleshooting
- This is safe to use and widely practiced in email development

