I am using the demo until I see if it does what I need. I have a email with a image in it. I am using email.SaveHtmlAs("C:\Filename.html") to save the email as a html file. I then want to read the filename.html to a literal so that it can be displayed. To do this I use:
objReader = New StreamReader("C:\Filename.html")
LitEmail.Text = objReader.ReadToEnd
The email is displayed but the image is not. How do I get the image to display?
Thanks