MsgConvertHtmlToRtfMethod Property
Gets or sets which HTML-to-RTF conversion method to use when making .MSG out of .EML source.

Namespace: MailBee.Outlook
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public HtmlToRtfConversionMethod HtmlToRtfMethod { get; set; }

Property Value

Type: HtmlToRtfConversionMethod
The default value is None which means no RTF body will be added during .EML into .MSG conversion.
Remarks
If you certainly need RTF body be added and HTML body is not an option, you can either use MailBee's internal converter or supply your own. However, because MailBee's internal converter cannot transform all the HTML formatting into RTF formatting (this would be an extremely complex task because both formats have lots of formatting mechanisms and they are very different), the formatting of the resulting RTF won't be perfect. Also, if you strictly need RTF and MailBee's converter is not suitable for you, you can plug your own converter in (for instance, if you have a dedicated component for HTML-to-RTF conversion). See HtmlToRtfConversionMethod topic for details.
See Also