Defined in header file: hzMailer.h

The hzContentType enumeration refers to the MIME type of files and includes MIME types used in constructing emails

Enum definition:

enum    hzContentType
{

HZ_CONTENT_TYPE_UNDEFINEDContent type not defined
HZ_CONTENT_TYPE_TEXT_PLAINContent is in plain text and there are no further levels
HZ_CONTENT_TYPE_TEXT_HTMLContent is in HTML and there are no further levels
HZ_CONTENT_TYPE_IMAGE_GIFContent is an image (gif)
HZ_CONTENT_TYPE_IMAGE_JPEGContent is an image (jpeg)
HZ_CONTENT_TYPE_IMAGE_PNGContent is an image (png)
HZ_CONTENT_TYPE_IMAGE_ICOContent is an image (ico)
HZ_CONTENT_TYPE_SCRIPT_JSContent is a java script
HZ_CONTENT_TYPE_APP_MSWORDContent is an application file (ms-word document)
HZ_CONTENT_TYPE_APP_MSEXCELContent is an application file (ms-excel document)
HZ_CONTENT_TYPE_APP_PDFContent is an application file (pdf)
HZ_CONTENT_TYPE_APP_TARContent is an application file (tar)
HZ_CONTENT_TYPE_APP_GZIPContent is an application file (gzipped)
HZ_CONTENT_TYPE_APP_ZIPContent is an application file (zipped)
HZ_CONTENT_TYPE_MULTI_ALTERNATIVEContent is presented more than once in different parts with each part representing a different format (eg text and HTML).
HZ_CONTENT_TYPE_MULTI_MIXEDThe content is comprised of parts that may be dissimilar in format
HZ_CONTENT_TYPE_MULTI_RELATEDThe content is comprised of related parts (only applies to email root part)

} ;