MailTransferEncoding Enumeration
Defines the available values for the properties specifying mail transfer encoding for text parts or attachments of the message.

Namespace: MailBee.Mime
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public enum MailTransferEncoding
Members
  Member nameValueDescription
None0 The text part is not encoded.
Raw7bit1 The contents of the text part are not encoded 7-bit chars (ASCII) only.
Raw8bit2 The contents of the text part are not encoded 8-bit chars.
QuotedPrintable3 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.
Base644 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.
Uue5 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