Zurück zum Ranking

unlayer/react-email-editor

TypeScriptunlayer.com

Drag-n-Drop Email Editor Component for React.js

email-templateemail-marketinghtml-emailhtml-emailsdrag-and-dropreact-componentbuilderemail-buildertemplateemailemail-editorai-assistant
Sterne-Wachstum
Sterne
5.2k
Forks
791
Wochenwachstum
Issues
236
2k4k
Jan. 2023März 2024Mai 2025Juli 2026
Artefaktenpmnpm install react-email-editor
README

React Email Editor

Official React component for embedding Unlayer’s drag-and-drop email editor in your app.

npm version stars license downloads CI status test coverage


Introduction

Add a production-ready, drag-and-drop email builder to your React app with a single component. react-email-editor lets developers embed Unlayer, load and save designs, listen to editor events, customize configuration, and export responsive HTML.

Use it when you need email template creation inside your app without building and maintaining a full visual editor from scratch.

Video Overview
React Email Editor
Watch video overview: https://youtu.be/qp9t74G4VyM

Live Demo

Check out the live demo here: https://react-email-editor-demo.netlify.app/ (Source Code)

Installation

The easiest way to use React Email Editor is to install it from NPM and include it in your own React build process.

npm install react-email-editor --save

Upgrading from 1.x

Version 2.0 is a modernization release — the component API is unchanged, and most apps can upgrade without code changes. Requirements and packaging did change:

  • React >= 16.8 and Node >= 18 are now required. (React 15–16.7 never worked with the hooks-based component in 1.7.x; 2.0 just enforces this at install time.)
  • Import only from the package root. Deep imports like react-email-editor/dist/... are blocked by the new exports map.
  • The published code is ES2019. If you support legacy browsers through an old toolchain that can't parse ES2019, stay on 1.x or transpile node_modules.
  • Editors are now destroyed on unmount (a long-standing leak fix).

See the CHANGELOG for the full list.

Usage

Require the EmailEditor component and render it with JSX:

import React, { useRef } from 'react';
import { createRoot } from 'react-dom/client';

import EmailEditor, { EditorRef, EmailEditorProps } from 'react-email-editor';

const App = (props) => {
  const emailEditorRef = useRef<EditorRef>(null);

  const exportHtml = () => {
    const unlayer = emailEditorRef.current?.editor;

    unlayer?.exportHtml((data) => {
      const { design, html } = data;
      console.log('exportHtml', html);
    });
  };

  const onReady: EmailEditorProps['onReady'] = (unlayer) => {
    // editor is ready
    // you can load your template here;
    // the design json can be obtained by calling
    // unlayer.loadDesign(callback) or unlayer.exportHtml(callback)
    // const templateJson = { DESIGN JSON GOES HERE };
    // unlayer.loadDesign(templateJson);
  };

  return (
    <div>
      <div>
        <button onClick={exportHtml}>Export HTML</button>
      </div>

      <EmailEditor ref={emailEditorRef} onReady={onReady} />
    </div>
  );
};

createRoot(document.getElementById('app')!).render(<App />);

See the example source for a reference implementation.

Next.js / React Server Components

The editor renders into the DOM, so the component is client-only. The published bundle includes the 'use client' directive, so with the Next.js App Router you can import it directly from any Client Component — no next/dynamic workaround required.

Methods

All unlayer methods are available in the editor instance (emailEditorRef.current.editor). See the Unlayer Docs for more information, or log the object in the console to explore it. Here are the most used ones:

method params description
loadDesign Object data Takes the design JSON and loads it in the editor
saveDesign Function callback Returns the design JSON in a callback function
exportHtml Function callback Returns the design HTML and JSON in a callback function

Properties

  • editorId {String} HTML div id of the container where the editor will be embedded (optional)
  • minHeight {String} minimum height to initialize the editor with (default 500px)
  • onLoad {Function} called when the editor instance is created
  • onReady {Function} called when the editor has finished loading
  • options {Object} options passed to the Unlayer editor instance (default {})
  • style {Object} style object for the editor container (default {})

Support

The email editor output is tested using the most popular email clients.

Gmail logo Apple Mail Outlook logo Yahoo! Mail logo
Gmail ✔ Apple Mail ✔ Outlook ✔ Yahoo! Mail ✔

AI Assistant

Add AI-powered content creation to your embedded email editor.

Unlayer’s AI Assistant helps users generate, rewrite, translate, and improve email content directly inside the editor. Developers can enable AI features through the editor configuration, giving users a faster way to create polished emails without leaving your app.

Custom Tools

Custom tools can help you add your own content blocks to the editor. Every application is different and needs different tools to reach it's full potential. Learn More

Custom Tools

Localization

You can submit new language translations by creating a PR on this GitHub repo: https://github.com/unlayer/translations. Translations managed by PhraseApp

License

Copyright (c) 2026 Unlayer. MIT Licensed.

Ähnliche Repositories
leemunroe/responsive-html-email-template

A free simple responsive HTML email template

HTMLMIT Licenseemail-templateemail
leemunroe.github.io/responsive-html-email-template/email.html
13.7k4.3k
emailmonday/Cerberus

A few simple, but solid patterns for responsive HTML email templates and newsletters. Even in Outlook and Gmail.

HTMLMIT Licenseresponsive-emailhtml-email
cerberusemail.com
5.1k697
matcornic/hermes

Golang package that generates clean, responsive HTML e-mails for sending transactional mail

GoGo ModulesApache License 2.0golanghermes
3k248
maizzle/maizzle

The modern email development framework.

Vuemaizzletailwindcss
maizzle.com
2.8k69
jonathandion/awesome-emails

✉️ An awesome list of resources to build better emails.

awesomeemails
2.7k255
voidlabs/mosaico

Mosaico - Responsive Email Template Editor

HTMLGNU General Public License v3.0email-marketingemail-template
mosaico.io
1.8k504
usewaypoint/email-builder-js

A free and open-source block-based email template builder.

TypeScriptnpmMIT Licensedeveloper-toolsemail
emailbuilderjs.com
1.7k745
antonreshetov/mysigmail

A free and open-source email signature generator for Gmail, Outlook, Apple Mail, etc.

VueGNU Affero General Public License v3.0emailemail-signature
mysigmail.com
1.4k221
ColorlibHQ/email-templates

Free HTML email templates for Mailchimp and other emails services

HTMLMIT Licensemailchimpemail-template
colorlib.com/wp/responsive-html-email-templates/
1.2k2.7k
Mindbaz/awesome-opensource-email

Awesome Opensource Email Resources

Creative Commons Zero v1.0 Universalemail-marketingemail
1.2k115
vue-email/vue-email

💌 Write email templates with vue

TypeScriptnpmMIT Licensecomponentsemail
vuemail.net
1.1k41
Slicejack/bojler

Bojler is an email framework

SCSSMIT Licenseemailcss
bojler.slicejack.com
1.1k56