TnefExtractionOptions Enumeration
Defines the available flags affecting which items to extract from a TNEF container (winmail.dat).

Namespace: MailBee.Mime
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
[FlagsAttribute]
public enum TnefExtractionOptions
Members
  Member nameValueDescription
None0 No additional options. If used with GetAttachmentsFromTnef, empty collection will be returned.
ExtractAttachments1 Extract attachments from a TNEF container.
ExtractRtfBody2 Extract RTF body from a TNEF container. MailBee will add the RTF body as "richbody.rtf" file to the returned collection (if the RTF body exists in the TNEF). If combined with ExtractAttachments flag, "richbody.rtf" will be the last element of the returned collection.
Remarks
To extract data from MS-TNEF (winmail.dat) attachments, use GetAttachmentsFromTnef(TnefExtractionOptions) method.
See Also