Class EmlxLoadOptions

EmlxLoadOptions class

Provides options for controlling how MailMessage instances are loaded from EMLX format. This class inherits from LoadOptions and is specifically designed for Apple Mail EMLX file format.

public class EmlxLoadOptions : LoadOptions

Constructors

NameDescription
EmlxLoadOptions()Initializes a new instance of this class that can be used to loading MailMessage from Eml format.

Properties

NameDescription
MessageFormat { get; }Represents the mail message format.It can be in eml,msg or mhtml format. The default value is Eml.
PreferredTextEncoding { get; set; }Gets or sets preferred encoding for message. Forcibly sets the preferred encoding for message subject and body. The default value is null.
PreserveEmbeddedMessageFormat { get; set; }Gets or sets a value indicating whether it is necessary to preserve format of embedded message at loading. By default the value is false.
RemoveSignature { get; set; }Gets or sets a value indicating whether signature will be removed while loading.

Remarks

Use this class with Load to load Apple Mail EMLX files. The EMLX format is used by Apple Mail on macOS and iOS devices.

See Also