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
| Tool | Plugin / Export Method |
|---|---|
| Figma | Emailify HTML Email Builder, Email Love, or Pixcraft plugin → Export → ZIP |
| Canva | Download → HTML → saves as ZIP |
| Any tool | Any 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 srcattributes rewritten: local paths likeimg/banner.pngbecome 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.gifNested image folders are not supported. All images must be inside a single flat img/ directory at the root of the ZIP.
Supported Image Formats
| Format | Supported |
|---|---|
| JPG / JPEG | Yes |
| PNG | Yes |
| GIF | Yes |
| WebP | Yes |
| SVG | No |
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.