+1 vote

I am retrieving my mail message from an exchange server. the message contains text and one inline jpg picture. looks fine in outlook.

getting the message works fine.

 Dim email As IMail
 Dim eml = Pop3.GetMessageByUID(uid)                    
 email = builder.CreateFromEml(eml)
 email.SaveHtmlAs("C:\HTMLEmail\email.html", False)

(tried both true and false)

saves the html file, but no image and the image link doesn't change.

by (250 points)
edited by
How does this email look like? Please send the raw eml data to the support email address, you can find in the page footer.
Wasn't able to get file until today. will send soon

1 Answer

0 votes

Leo, without the email in question, I'll be forced to close this question again, as this is not enough information to even confirm this.

[Edit]

There is no HTML content in the email you provided - only text/plain content.

If you are using Exchange, configure POP3 and IMAP4 message retrieval format options:
https://technet.microsoft.com/en-us/library/aa997869%28v=exchg.150%29.aspx

by (297k points)
edited by
...