TCPIP_SMTPC_MESSAGE_REPORT Structure
C
typedef struct {
TCPIP_SMTPC_MESSAGE_RESULT messageRes;
TCPIP_SMTPC_MESSAGE_STATUS errorStat;
TCPIP_SMTPC_MESSAGE_WARNING messageWarn;
int leftRetries;
} TCPIP_SMTPC_MESSAGE_REPORT;
Description
Structure: TCPIP_SMTPC_MESSAGE_REPORT.
This data structure describes a mail message report. It is used by the SMTPC to report an mail delivery result.
Members
Members | Description |
---|---|
messageRes | The result of the message TCPIP_SMTPC_RES_OK if the message was successfully transmited else some error were encountered. |
errorStat | The mail message status in which the error occurred, if any Else the TCPIP_SMTPC_MESSAGE_STAT_NONE will be used. |
messageWarn | Warnings encountered during the message transmission, if any. |
leftRetries | The number of retries that will still be attempted if error was a transient, not fatal. |
Remarks
None.