Server side render
This section explains how to use Easy Email Pro's server-side rendering capabilities. However, it's important to note that you are not required to use Easy Email Pro's dynamic rendering engine. If your company already has its own template tag replacement system, you can continue using that system and skip this section.
When to use this guide
Use this guide if you want to:
- Leverage Easy Email Pro's built-in dynamic rendering capabilities
- Generate HTML that includes dynamic content from Easy Email Pro templates
If you only need to generate static HTML from your templates and will handle dynamic content replacement with your own system, you can simply use the toMJML
and mjml
conversion functions without the plugin rendering step.
Server-side rendering with Easy Email Pro
Register plugins (If you need these plugins)
PluginManager.registerPlugins([Countdown, Shopwindow]);
Register custom blocks
BlockManager.registerBlocks([DynamicCustomBlock]);
const main = async () => {
await EditorCore.auth(process.env.CLIENT_ID!);
const pageData = template.content as EmailTemplate["content"];
// mjmlSkeleton & htmlSkeleton can be cached
const mjmlSkeleton = EditorCore.toMJML({
element: pageData,
mode: "production",
});
const htmlSkeleton = mjml(mjmlSkeleton).html;
const finalHtml = PluginManager.renderWithData(htmlSkeleton, {});
console.log(finalHtml);
};
main();
Using your own template system
If you prefer to use your own template system:
- Generate the HTML from Easy Email Pro templates using
toMJML
andmjml
- Skip the
PluginManager.renderWithData
step - Pass the generated HTML to your own template engine to replace variables and dynamic content
This approach allows you to integrate Easy Email Pro's design capabilities with your existing template processing system.