Gathering detailed insights and metrics for @spatie/react-email-editor
Gathering detailed insights and metrics for @spatie/react-email-editor
Gathering detailed insights and metrics for @spatie/react-email-editor
Gathering detailed insights and metrics for @spatie/react-email-editor
Drag-n-Drop Email Editor Component for React.js
npm install @spatie/react-email-editor
Typescript
Module System
Min. Node Version
Node Version
NPM Version
72.2
Supply Chain
99.4
Quality
75.1
Maintenance
100
Vulnerability
100
License
TypeScript (99.31%)
JavaScript (0.69%)
Total Downloads
6,927
Last Day
3
Last Week
42
Last Month
156
Last Year
1,882
MIT License
1 Stars
170 Commits
2 Branches
1 Contributors
Updated on Mar 23, 2023
Minified
Minified + Gzipped
Latest Version
1.8.3
Package Id
@spatie/react-email-editor@1.8.3
Unpacked Size
83.04 kB
Size
15.12 kB
File Count
24
NPM Version
8.11.0
Node Version
18.3.0
Published on
Mar 28, 2023
Cumulative downloads
Total Downloads
Last Day
0%
3
Compared to previous day
Last Week
281.8%
42
Compared to previous week
Last Month
-25%
156
Compared to previous month
Last Year
-58.2%
1,882
Compared to previous year
The excellent drag-n-drop email editor by Unlayer as a React.js wrapper component. This is the most powerful and developer friendly visual email builder for your app.
Video Overview |
---|
![]() |
Watch video overview: https://youtu.be/MIWhX-NF3j8 |
Check out the live demo here: http://react-email-editor-demo.netlify.com/ (Source Code)
Here's a blog post with a quickstart guide: https://medium.com/unlayer-blog/creating-a-drag-n-drop-email-editor-with-react-db1e9eb42386
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
Require the EmailEditor component and render it with JSX:
1import React, { useRef } from 'react'; 2import { render } from 'react-dom'; 3 4import EmailEditor from 'react-email-editor'; 5 6const App = (props) => { 7 const emailEditorRef = useRef(null); 8 9 const exportHtml = () => { 10 emailEditorRef.current.editor.exportHtml((data) => { 11 const { design, html } = data; 12 console.log('exportHtml', html); 13 }); 14 }; 15 16 const onReady = () => { 17 // editor is ready 18 // you can load your template here; 19 // const templateJson = {}; 20 // emailEditorRef.current.editor.loadDesign(templateJson); 21 }; 22 23 return ( 24 <div> 25 <div> 26 <button onClick={exportHtml}>Export HTML</button> 27 </div> 28 29 <EmailEditor ref={emailEditorRef} onReady={onReady} /> 30 </div> 31 ); 32}; 33 34render(<App />, document.getElementById('app'));
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 |
See the example source for a reference implementation.
editorId
String
HTML div id of the container where the editor will be embedded (optional)style
Object
style object for the editor container (default {})minHeight
String
minimum height to initialize the editor with (default 500px)onLoad
Function
called when the editor instance is createdonReady
Function
called when the editor has finished loadingoptions
Object
options passed to the Unlayer editor instance (default {})tools
Object
configuration for the built-in and custom tools (default {})appearance
Object
configuration for appearance and theme (default {})projectId
Integer
Unlayer project ID (optional)See the Unlayer Docs for all available options.
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
You can submit new language translations by creating a PR on this GitHub repo: https://github.com/unlayer/translations. Translations managed by PhraseApp
Copyright (c) 2023 Unlayer. MIT Licensed.
No vulnerabilities found.
No security vulnerabilities found.