MessageParserConfigSetPlainOutputMode Method
Configures the parser to prepare the message for displaying in plain-text container (such as a TextBox control in WinForms application or the console).

Namespace: MailBee.Mime
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public void SetPlainOutputMode()
Remarks
This method configures the parser as follows:
  • PlainToHtmlMode=PlainToHtmlAutoConvert.Never;
  • HtmlToPlainMode=HtmlToPlainAutoConvert.IfNoPlain
  • HtmlToSimpleHtmlMode=HtmlToSimpleHtmlAutoConvert.Never;
  • HeadersAsHtml=false;
To specify an output message in HTML text mode, use SetPlainOutputMode property.
Examples
The example is available in MessageParserConfig class overview.
See Also