MailBee.NET Objects 4.0

MailTransferEncoding Enumeration

Defines the available values for the properties specifying mail transfer encoding for text parts of the message

public enum MailTransferEncoding

Remarks

The properties of this type are MailMessage.MailTransferEncodingPlain, MailMessage.MailTransferEncodingHtml, TextBodyPart.TransferEncoding.

Members

Member Name Description
None The text part is not encoded.
Raw7bit The contents of the text part are not encoded 7-bit chars (ASCII) only.
Raw8bit The contents of the text part are not encoded 8-bit chars.
QuotedPrintable 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 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 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.

Requirements

Namespace: MailBee.Mime

Assembly: MailBee.NET (in MailBee.NET.dll)

See Also

MailBee.Mime Namespace