The mode to process RTF mails.
public enum RtfProcessingMode
Public Enum RtfProcessingMode
public enum class RtfProcessingMode
Name | Description |
---|
Default | Convert RTF to HTML and discard the RTF in case of succesful conversion.
In case of unsuccesful conversion, the RTF is kept as attachment (with the "X-ComponentPro-RTF-Body" header set).
This is the default behavior. |
TreatAsAttachment | RTF is not converted into HTML and is always treated as attachment. The appropriate "X-ComponentPro-RTF-Body" header is set. |
Legacy | Legacy mode that turns on the legacy behavior.
RTF is converted to HTML and kept either as Attachment (for binary RTF's) or as AlternateView (for non-binary RTF's).
In case that RTF is added as attachment, then the "X-ComponentPro-RTF-Body" header is set. |
Top