HtmlToPlainAutoConvert Enumeration
Defines the available modes which specify when HTML body of a message should automatically be converted into plain text during parsing of this message.

Namespace: MailBee.Mime
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public enum HtmlToPlainAutoConvert
Members
  Member nameValueDescription
IfNoPlain0 Convert when the message does not have a plain text body.
IfHtml1 Convert when the message has an HTML body (if the plain text body exists as well, it will be overwritten).
Never2 HTML body of the message will never be automatically converted into plain text during parsing of this message.
Remarks
You can set any of these mode via MailMessage.Parser.HtmlToPlainMode property.
See Also