HtmlToSimpleHtmlConvertOptions Enumeration
Defines the available flags which affect how HTML body of a message should be converted into simple HTML.

Namespace: MailBee.Mime
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
[FlagsAttribute]
public enum HtmlToSimpleHtmlConvertOptions
Members
  Member nameValueDescription
None0 No extra processing.
AddImgAltText1 The alternative text (contents of ALT element of IMG tag) will be put in simple HTML in place of this image in the original HTML. If this flag is not set, no mention of the image will be available in the resulting simple HTML.
WriteImageIfNoAlt2 If there is no alternative text for the image, the "image" string will be added as the alternative text. Has no effect if AddImgAltText flag is not specified.
MakeLinkForImg4 Make alternative text of the original image a link to the original image. For example, if the original HTML was <img src="http://www.server.com/picture.gif" alt="Our Picture">, the following simple HTML is produced: <a href="http://www.server.com/picture.gif">Our Picture</a>. Has no effect if AddImgAltText flag is not specified.
Remarks
You can set any combination of these options via MailMessage.Parser.HtmlToSimpleHtmlOptions property.
See Also