Hello,
This issue is sure exists for some time, from when I started testing Words, not confirmed, I don’t know the root of issue is from Words or Email, so posted here to first diagnose where’s the problem?
Using Aspose Words, when I save a document as Mhtml in a MemoryStream, and then try to load it back using Aspose Email from MemoryStream and save as email or message, the inner images/resources will be lost.
Try to use an Html file as SourceFile with this sample:
Dim MyDocEmail As Words.Document = New Words.Document(SourceFile, LoadOptions)
Using MyMemoryStream As New MemoryStream
MyDocEmail.Save(MyMemoryStream, MhtmlSave...)
MyMemoryStream.Position = 0
Using MyMailMessage As Email.MailMessage = Email.MailMessage.Load(MyMemoryStream, MhtmlLoad...)
MyMailMessage.Save(TargetFile, EmlxSave...)
End Using
End Using