I want to place the contents of a outlook mail body into a webbrowser control in winforms. everything is displayed if i use following code,but images in the page is not displayed. I am using outlook 2013 and VS2012.
webBrowser1.DocumentText = mail.HTMLBody;
I checked html it shows something like: It shows something like:
<img id=\"Picture_x0020_7\" src=\"cid:image002.png@01D10B5C.06CC63D0\" width=\"904\" height=\"768\">
As i want to implement it in project i can't save the mail body in local as suggested here: how to get embed image from current outlook email with c#?^]
Any help deeply appreciated.