DEV Community

Discussion on: How do you implement your email design?

Collapse
 
alediaferia profile image
Alessandro Diaferia • Edited

I've implemented email designs using React in the past, and I've been able to share UI Components between the application code and the emails which has resulted in a pretty consistent user experience.
Emails were part of a continuous integration pipeline that used webpack to compile them as static HTML template files so that they could be interpolated by application code and sent to the users.

What's your approach?