In development

The hosted layer for the open-source email editor.

AI, MCP, real-time collaboration, comments, a media library, template scoring, and a headless API — on top of Templatical's OSS Vue 3 editor.

What Cloud adds.

Six highlights below. 5 more on the features page.

Self-host the OSS. Flip to Cloud when you need more.

Same editor, same JSON, same MJML renderer. Export templates any time. No proprietary lock-in.

The open-source core stays open source.

// Self-hosted OSS
import { init } from '@templatical/editor';

const editor = await init({
  container: '#editor',
});

// When ready — flip a switch.
import { initCloud } from '@templatical/editor';

const editor = await initCloud({
  container: '#editor',
  auth: { url: '/api/token' },
});