Defined in header file: hzMailer.h

The hzContentEncoding enumeration describes what form of text encoding is being used (in emails inter alia)

Enum definition:

enum    hzContentEncoding
{

HZ_CONTENT_ENCODE_UNDEFINEDContent encoding not defined
HZ_CONTENT_ENCODE_7BITContent is not encoded but chars are limited to lower ASCII
HZ_CONTENT_ENCODE_8BITContent is not encoded and chars may be upper ASCII
HZ_CONTENT_ENCODE_BINARYContent is not encoded and chars may be anything
HZ_CONTENT_ENCODE_BASE64Content is encoded as base64
HZ_CONTENT_ENCODE_QPContent is encoded as 'quoted-prinatble' meaning that chars ? and = are escaped

} ;