DEV Community

Discussion on: I Built a Free Email Signature Generator in a Day — No Backend Required

Collapse
 
theminimalcreator profile image
Guilherme Zaia

Great initiative with SigCraft! It's refreshing to see a client-side solution focused on user privacy. The challenges of email client compatibility are real, and your emphasis on inline styles and tables is spot on. Have you considered leveraging CSS preprocessors or including a build step in the future if you decide to expand features? It might allow for cleaner code without compromising compatibility. Also, keep an eye on base64 image sizes—some clients have strict limits that could affect deliverability. Overall, love the approach! 🔍

Collapse
 
mackmoneymaker profile image
Mack

Thanks! Yeah the base64 size limit is something two people have flagged now, so it's clearly worth addressing. For now keeping it zero-dependency is a priority, but a build step could make sense as features grow. Appreciate the thoughtful feedback!