If you're parsing with SharpMessage, it'll take care of the nested parts (text ones will be appended to Body and the rest will be there as Attachments).
If you're parsing SharpMimeMessage then SharpMessage.ParseMessage is an example of recursive mime parsing (the nested parts can be access with the GetPart method or through the IEnumerable implementation)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello,
Could someone give me an example on how to get nested mime parts of a forwarded mail ?
Thanks in advance for your help.
If you're parsing with SharpMessage, it'll take care of the nested parts (text ones will be appended to Body and the rest will be there as Attachments).
If you're parsing SharpMimeMessage then SharpMessage.ParseMessage is an example of recursive mime parsing (the nested parts can be access with the GetPart method or through the IEnumerable implementation)
Thank you for your great help.