PlainToHtmlConvertOptions Enumeration
Defines the available flags affecting conversion of the plain-text body into HTML during parsing the message.

Namespace: MailBee.Mime
Assembly: MailBee.NET.45 (in MailBee.NET.45.dll) Version: 10.0.45.502
Syntax
[FlagsAttribute]
public enum PlainToHtmlConvertOptions
Members
  Member nameValueDescription
None0 No additional options.
UriToLink1 All URIs (URLs) contained in the plain-text body of the message should be converted into HTML links (e.g. http://www.afterlogic.com will be converted into <a href="http://www.afterlogic.com">http://www.afterlogic.com</a> link). Can be used in conjunction with AHRefSuffix to further decorate HTML links being produced.
Remarks
You can set any combination of these options via MailMessage.Parser.PlainToHtmlOptions property.
See Also