Live data from Hacker News

Ask HN: What tools do you use to build HTML emails?

news.ycombinator.com

1–10 of 25 posts

Ask HN: What tools do you use to build HTML emails?

#1
I'm working on a side project that sends out daily/weekly email reports. I'm working in C# and using Mailgun[0] to send email, but I'm unsure of how to approach designing HTML email templates.

My concerns:

- Inconsistency across email clients.

- Is there a tool to inline CSS styles (since stylesheets are not allowed in gmail)?

- Displaying bar graphs. I thinkg my options are either doing this with tables/divs or to generate an image of the graph to avoid inconsistent formatting.

- The email reports will also be web pages. How do I avoid UI duplication?

I'd appreciate any suggestions and/or shared experience!

[0] https://mailgun.com

Re: Ask HN: What tools do you use to build HTML emails?

#4

To inline CSS you can use the free tool from MailChimp: http://templates.mailchimp.com/resources/inline-css/ As for templates MailChimp also offers hundreds of them through their GitHub: https://github.com/mailchimp/Email-Blueprints

Nice, I'll give the mailchimp tool a shot. I really just need to setup a handful of templates, so it being a manual tool isn't a problem at all.

I found an old broken link to free mailchimp templates, didn't think to check their Github! Appreciate it.

Re: Ask HN: What tools do you use to build HTML emails?

#6
post #4

To inline CSS you can use the free tool from MailChimp: http://templates.mailchimp.com/resources/inline-css/ As for templates MailChimp also offers hundreds of them through their GitHub: https://github.com/mailchimp/Email-Blueprints

Nice, I'll give the mailchimp tool a shot. I really just need to setup a handful of templates, so it being a manual tool isn't a problem at all. I found an old broken link to free mailchimp templates, didn't think to check their Github! Appreciate it.

No problem. The inline tool has saved me countless hours though and is simple to use. Their templates are great for building blocks or also ready to go as they are.
Post reply on HN