This is cool! I looked for this in the past. This is the main reason we bothered with mailchimp/hubspot -- simply the ability for nontechnical marketing people to put together nice emails, and the trust that we won't need an engineer to troubleshoot email formatting on their behalf. I remember trying some OSS tools at the time (8 years ago?) and there were some templates we used but then when we wanted to modify them…
Thanks — this is exactly the audience I built it for. The cross-client rendering thing is why Templatical outputs MJML instead of raw HTML. MJML was built to abstract all the table-based, Outlook-2007-quirks, Gmail-strips-style nonsense — you write semantic blocks, MJML compiles to table HTML that works across every major email client. So when your marketing person moves a block or changes a button color, it doesn't…
Show HN: I built an open-source email builder, alternative to Beefree/Unlayer
41–50 of 63 posts
Re: Show HN: I built an open-source email builder, alternative to Beefree/Unlayer
#42Re: Show HN: I built an open-source email builder, alternative to Beefree/Unlayer
#43Even with LLMs, generating raw HTML emails that render correctly across major email clients is still surprisingly hard, so great choice going with MJML.
Re: Show HN: I built an open-source email builder, alternative to Beefree/Unlayer
#44Looks good! Do you have an MCP or API in your roadmap? The reason: managing a lot of templates and their placeholders can get out of hand pretty quickly and agents can be a good way to deal with the complexity. I'd love to try this with sendops.dev although I'm not sure how it's going to work with the git backed templating it has.
Re: Show HN: I built an open-source email builder, alternative to Beefree/Unlayer
#45The migration page is so good. Being stuck in Unlayer is a real thing, and seeing a clear path out makes this much more tempting to adopt.
I'd love to hear your feedback on what worked and what didn't. Feel free to open an issue or start a discussion on GitHub.
Re: Show HN: I built an open-source email builder, alternative to Beefree/Unlayer
#46Re: Show HN: I built an open-source email builder, alternative to Beefree/Unlayer
#47Re: Show HN: I built an open-source email builder, alternative to Beefree/Unlayer
#48Re: Show HN: I built an open-source email builder, alternative to Beefree/Unlayer
#49As someone who built a similar open source project (grapesjs), this looks really good Even with LLMs, generating raw HTML emails that render correctly across major email clients is still surprisingly hard, so great choice going with MJML.
GrapesJS is the forever OG that proved this whole space could be an embeddable SDK rather than a paywalled SaaS. It also standardized the palette/canvas/inspector layout that every serious visual builder now ships by default — including Templatical. I took direct inspiration from a few other patterns too: the block-as-first-class-citizen model, and the trait system, which maps almost 1:1 to how Templatical's custom blocks expose typed fields into the inspector.
And yeah — agreed on MJML. Building email layouts that work for most clients is notoriously hard. I think the people who built MJML absorbed an enormous amount of pain so the rest of us don't have to.
Huge respect for what you built.