Keplars

Import ZIP

Import HTML email exports from Figma, Canva, or any ZIP containing index.html and images

Import ZIP

ZIP import lets you bring in a fully designed email from any design tool that can export HTML. Keplars automatically uploads your images to CDN and rewrites the src attributes so your email renders correctly in all clients.

Supported Export Sources

ToolPlugin / Export Method
FigmaEmailify HTML Email Builder, Email Love, or Pixcraft plugin → Export → ZIP
CanvaDownload → HTML → saves as ZIP
Any toolAny ZIP containing index.html at the root with images

Importing a ZIP

Go to Dashboard → Manage Templates → New Template and select Enceladas Editor

Click Import ZIP in the toolbar at the top of the editor

Select your .zip file from your computer

A progress overlay shows upload status for each image

Once complete, the editor opens with your HTML loaded and all image src values pointing to the Keplars CDN

What Happens Automatically

  • Images uploaded to CDN: every image file in the ZIP is uploaded and served from cdn.keplars.com
  • src attributes rewritten: local paths like img/banner.png become absolute CDN URLs
  • Variable spacing normalized: {{ name }} is rewritten to {{name}} so Handlebars processes it correctly

ZIP Structure Requirements

my-email.zip
├── index.html        ← required, must be at the root
└── img/              ← images must be in a flat folder
    ├── banner.png
    ├── logo.jpg
    └── footer.gif

Nested image folders are not supported. All images must be inside a single flat img/ directory at the root of the ZIP.

Supported Image Formats

FormatSupported
JPG / JPEGYes
PNGYes
GIFYes
WebPYes
SVGNo

CSS files inside the ZIP are not uploaded. Keplars only processes index.html and image assets. Use inline styles in your HTML for full compatibility across email clients: most email clients strip external stylesheets entirely.

On this page