ImportBodyOptions Enumeration
Defines the available flags for importing the body of the mail message from a file or URI via LoadBodyText(String, MessageBodyType, Encoding, ImportBodyOptions) method.

Namespace: MailBee.Mime
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
[FlagsAttribute]
public enum ImportBodyOptions
Members
  Member nameValueDescription
None0 Simply overwrite the existing message body with the imported data.
Append1 The imported body will be appended to the existing message body.
PathIsUri2 The path parameter of LoadBodyText(String, MessageBodyType, Encoding, ImportBodyOptions) method is URI rather than disk file path. If this option is not set, absolute or relative path on disk is assumed.
ImportRelatedFiles4 The files related to the imported message body (inline pictures, etc) will also be imported (they will appear as inline attachments, having IsInline set to true).
ImportRelatedFilesFromUris8 The files which are referenced in the imported message body via URIs will be downloaded from their web locations and attached to the message. If this flag is not set, only local files will be imported while URI references will be left as-is.
PreferCharsetFromMetaTag16 If sourceEncoding parameter of LoadBodyText(String, MessageBodyType, Encoding, ImportBodyOptions) method is set, use it only if charset information is not available in META tag of the HTML data being imported. Has no effect for plain-text data or when sourceEncoding is a null reference (Nothing in Visual Basic).
Remarks
URI is a synonym of an URL.
See Also