MailTransferEncoding Enumeration |
Defines the available values for the properties specifying mail transfer encoding for text parts or attachments of the message.
Namespace: MailBee.MimeAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax public enum MailTransferEncoding
Public Enumeration MailTransferEncoding
Members
| Member name | Value | Description |
---|
| None | 0 |
The text part is not encoded.
|
| Raw7bit | 1 |
The contents of the text part are not encoded 7-bit chars (ASCII) only.
|
| Raw8bit | 2 |
The contents of the text part are not encoded 8-bit chars.
|
| QuotedPrintable | 3 |
The contents of the text part are encoded with Quoted-Printable. The output is 7-bit,
ASCII chars except '=' char are represented as itself, 8-bit chars and '=' char are represented as '=XX'.
Recommended for texts which are mostly ASCII.
|
| Base64 | 4 |
The contents of the text part are encoded with Base64. The output is 7-bit but not human readable. 3 chars are
represented as 4 7-bit bytes. Recommended for binary data and non-ASCII texts.
|
| Uue | 5 |
The contents of the text part are encoded with UUE. Like Base64, the ouput is 7-bit but not human readable.
Not recommended for use but supported for compatibility.
|
Remarks See Also