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_UNDEFINED | Content type not defined | ||
| HZ_CONTENT_TYPE_TEXT_PLAIN | Content is in plain text and there are no further levels | ||
| HZ_CONTENT_TYPE_TEXT_HTML | Content is in HTML and there are no further levels | ||
| HZ_CONTENT_TYPE_IMAGE_GIF | Content is an image (gif) | ||
| HZ_CONTENT_TYPE_IMAGE_JPEG | Content is an image (jpeg) | ||
| HZ_CONTENT_TYPE_IMAGE_PNG | Content is an image (png) | ||
| HZ_CONTENT_TYPE_IMAGE_ICO | Content is an image (ico) | ||
| HZ_CONTENT_TYPE_SCRIPT_JS | Content is a java script | ||
| HZ_CONTENT_TYPE_APP_MSWORD | Content is an application file (ms-word document) | ||
| HZ_CONTENT_TYPE_APP_MSEXCEL | Content is an application file (ms-excel document) | ||
| HZ_CONTENT_TYPE_APP_PDF | Content is an application file (pdf) | ||
| HZ_CONTENT_TYPE_APP_TAR | Content is an application file (tar) | ||
| HZ_CONTENT_TYPE_APP_GZIP | Content is an application file (gzipped) | ||
| HZ_CONTENT_TYPE_APP_ZIP | Content is an application file (zipped) | ||
| HZ_CONTENT_TYPE_MULTI_ALTERNATIVE | Content is presented more than once in different parts with each part representing a different format (eg text and HTML). | ||
| HZ_CONTENT_TYPE_MULTI_MIXED | The content is comprised of parts that may be dissimilar in format | ||
| HZ_CONTENT_TYPE_MULTI_RELATED | The content is comprised of related parts (only applies to email root part) |
} ;