TCPIP_SMTPC_ATTACH_TYPE Enumeration

C

typedef enum {
    TCPIP_SMTPC_ATTACH_TYPE_UNKNOWN = 0x0000,
    TCPIP_SMTPC_ATTACH_TYPE_APPLICATION = 0x0001,
    TCPIP_SMTPC_ATTACH_TYPE_TEXT = 0x0002,
    TCPIP_SMTPC_ATTACH_TYPE_INLINE = 0x8000
} TCPIP_SMTPC_ATTACH_TYPE;

Description

Enumeration: TCPIP_SMTPC_ATTACH_TYPE.

Enumeration describing the possible attachment types supported by the SMTPC client.

Members

MembersDescription
TCPIP_SMTPC_ATTACH_TYPE_UNKNOWN = 0x0000Unknown attachment type; will default to binary.
TCPIP_SMTPC_ATTACH_TYPE_APPLICATION = 0x0001Application octet stream, binary Use this attachment type when sending binary data.
TCPIP_SMTPC_ATTACH_TYPE_TEXT = 0x0002Plain text. Use this attachment type when sending ASCII text. Other supported types will be added here.
TCPIP_SMTPC_ATTACH_TYPE_INLINE = 0x8000Flag for sending the data as inline instead of attachment.

Remarks

Only one attachment type should be set at a time.