Closed Erapchu closed 1 year ago
Retrieve the Attachments property on Message object will return all attachments, but some of them has incorrect IsInline property.
IsInline
var message = new MsgReader.Outlook.Storage.Message(mailStream)
Attachments
BodyHtml
To avoid this and determine is attachment embedded or not, I need to get BodyHtml before Attachments property - this have impact on memory using.
Expected behavior Correct property set is embedded attachment or not - IsInline on Attachment.
Attachment
I think it's required to get BodyHtml only if attachments count > 0 to set correct IsInline or not?
Implemented with this commit 97d898d72fb6da9aa67ff7c02938682ea2db02a1
Retrieve the Attachments property on Message object will return all attachments, but some of them has incorrect
IsInline
property.var message = new MsgReader.Outlook.Storage.Message(mailStream)
Attachments
beforeBodyHtml
To avoid this and determine is attachment embedded or not, I need to get
BodyHtml
beforeAttachments
property - this have impact on memory using.Expected behavior Correct property set is embedded attachment or not -
IsInline
onAttachment
.I think it's required to get BodyHtml only if attachments count > 0 to set correct IsInline or not?