display MailMessage
C#
3
Posts
3
Posters
0
Views
1
Watching
-
Hi! I'm building a MailMessage object containing html body with embedded images. How can I now display the content of the message with its embedded pictures in an UI control like WebBrowser? Thank you!
Extract the HTML to a file in a temp folder. Then extract the images to that same folder. You may have to adjust the HTML so it points to those images correctly. Then point the WebBrowser to the HTML file you created in the temp folder.
-
Hi! I'm building a MailMessage object containing html body with embedded images. How can I now display the content of the message with its embedded pictures in an UI control like WebBrowser? Thank you!