A drag-and-drop email editor you embed — and your customers' content never leaves your infrastructure.
Your users build emails without leaving your product. The editor runs in their browser and posts to your endpoints. No third-party storage, no data round-trip through someone else's cloud, no iframe pointing at a vendor. (One exception, stated because a prospect with DevTools open will find it: adding a Video block fetches its thumbnail from YouTube.)
This is the real editor
Not a video and not a screenshot — the same editor the embed ships. Drag a block in from the left, click any text to edit it, then export the HTML. Nothing is saved and nothing is uploaded.
The embed
One module and one mount call. No framework adapter, because there is nothing to adapt to — it is a DOM element and a function.
<div id="editor"></div>
<script type="module">
// Served from your own origin. There is no CDN to trust.
import { mount } from "/vendor/editor/editor.js";
mount("#editor", {
// Your endpoint. The document is POSTed here and nowhere else.
save: "/api/campaigns/42",
// Your storage. The editor asks; it never uploads anywhere itself.
uploadImage: (file) => myUploader(file),
blocks: ["heading", "text", "image", "button", "gallery"],
});
</script>
-
Framework-agnostic
A div and a function call. React, Vue, Rails, Django, plain HTML — the editor does not know or care.
-
Self-hosted
You serve the bundle. Content goes to the endpoints you configure — there is no path in the editor that sends it to us.
-
Output that survives Outlook
Table-based HTML with VML buttons and the MSO head — the export above is the same code path your users would ship.
Pricing
Per company, not per seat — we do not count your users, and the editor does not phone home to try. Every tier is self-hosted.
-
Solo
$99 / month
One product, shipping.
- One production application
- Every block type, every export path
- Updates for as long as you subscribe
- Email support, next business day
-
Team
Most teams$299 / month
Several products, or one with real volume.
- Unlimited applications under one company, with every block type and export path
- Updates for as long as you subscribe
- Priority support, same business day
- A say in what gets built next
-
Enterprise
$899 / month
Procurement is involved.
- Everything in Team
- Air-gapped build — the Video block's thumbnail fetch removed; YouTube is the one host the editor reaches on its own
- Security review, a DPA if procurement wants one, and invoicing
- A named person who answers
No trial to sign up for and nothing to cancel, because there is nothing to buy yet. These are the numbers it would ship at, published now because "would I pay $299 for this" is a more useful question than "is this interesting".
Where this is: the editor above is real and finished enough to judge. The embed package is not available yet — this page exists to find out whether it is worth building.
Get an API key
There is no key to hand out yet — that is what this is for. Leave an address and we will write to you when there is one. It posts to this origin, like everything else on this page: no form service in the middle, and the form has one field.