Web Email Editor

My company has a requirement to render MIME-encoded emails (HTML) in a browser window. This is not part of MUA, but a tool that we need to add to our product. I scanned the entire network for the product / library, and I cannot find it.

Has anyone used anything to render emails in a browser window?

+4
source share
2 answers

You did not specify a language, so I assume that you are flexible.

Just extract the HTML using the corresponding function in any library you work with, either draw it directly in the browser, or save it to the file system and return the link. You cannot β€œattach” to attachments from the email body, but you can get attachments from the parser library, save them, and create file links.

+2
source

I would suggest that you create your own solution, I'm currently working on a solution to a similar problem, and this link is a good starting point,

-4
source

Source: https://habr.com/ru/post/1382329/


All Articles