Defines the available categories of MIME parts.
Namespace: MailBee.MimeAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax Public Enumeration MimePartType
Members
| Member name | Value | Description |
---|
| Other | 0 |
The MIME part format is non-standard.
|
| PlainText | 1 |
The MIME part contains plain text (ContentType is text/plain value).
|
| Html | 2 |
The MIME part contains HTML (ContentType is text/html value).
|
| RichText | 3 |
The MIME part contains text in rich-text format (ContentType is text/rtf or text/richtext value).
|
| Xml | 4 |
The MIME part contains XML data (ContentType is text/xml value).
|
| Rfc822Message | 5 |
The MIME part contains encapsulated e-mail message (ContentType is message/rfc822 value).
|
| Image | 6 |
The MIME part represents an image (ContentType is image/* value, e.g.
image/jpeg, image/gif, etc).
|
| Multipart | 7 |
The MIME part contains nested MIME parts
(ContentType is multipart/* value, e.g.
multipart/mixed, multipart/related, etc).
|
Remarks
To determine the category of the given MIME part, use
PartType property.
See Also