ImportBodyOptions Enumeration |
Namespace: MailBee.MimeAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax [FlagsAttribute]
public enum ImportBodyOptions
<FlagsAttribute>
Public Enumeration ImportBodyOptions
Members
| Member name | Value | Description |
---|
| None | 0 |
Simply overwrite the existing message body with the imported data.
|
| Append | 1 |
The imported body will be appended to the existing message body.
|
| PathIsUri | 2 |
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.
|
| ImportRelatedFiles | 4 |
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).
|
| ImportRelatedFilesFromUris | 8 |
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.
|
| PreferCharsetFromMetaTag | 16 |
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