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 (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
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. https://afterlogic.com will be converted into <a href="https://afterlogic.com">https://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