Easy Email Pro is a drag-and-drop email template editor for building responsive HTML emails, marketing campaigns, newsletters, and transactional email templates. It combines the editing experience of SlateJS with MJML email rendering, so teams can create professional email templates with inline editing, reusable blocks, keyboard shortcuts, preview, and mobile-friendly output.
Visit the official website for product details, pricing, and integration guides: https://www.easyemail.pro/
Try the hosted email editor demo: https://demo.easyemail.pro/full
Documentation: https://docs.easyemail.pro/docs/intro
- Build responsive HTML email templates with MJML compatibility.
- Use a React email editor with drag-and-drop blocks and inline content editing.
- Create marketing emails, newsletters, product emails, and transactional email templates.
- Preview desktop and mobile layouts while editing.
- Integrate the editor into React, Vue, Next.js, iframe, or pure JavaScript projects.
Install dependencies:
pnpm installStart the development server:
pnpm devOpen the simple demo:
http://localhost:3000/simple
For the free demo client, use FREE. To use your own client ID, update vite.config.ts:
"process.env.CLIENT_ID": JSON.stringify("your client id"),If you want to integrate Easy Email Pro without a framework, build the standalone version first:
npm run build:iifeThis generates two files in the build directory:
easy-email-pro.jsstyle.css
Copy these files to your project's assets directory, then include them in your HTML:
<link rel="stylesheet" href="./build/style.css" />
<script src="./build/easy-email-pro.js"></script>Initialize the editor:
<div id="editor"></div>
<script>
const editor = EasyEmailPro.initEditor("editor", {
clientId: "your-client-id",
height: "calc(100vh - 50px)",
initialValues: yourTemplate,
onUpload: (file) => {
return Promise.resolve(uploadedFileUrl);
},
});
</script>For a complete example, see the pure HTML implementation.
Easy Email Pro also includes examples for Vue, Next.js, iframe integration, and other embedding patterns:
https://github.com/orgs/Easy-Email-Pro/repositories
Learn more about the Easy Email Pro responsive email editor, MJML email builder, and email template design workflow at https://www.easyemail.pro/.


