Discuss this help topic in SecureBlackbox Forum

TSBSMTPDSNOption

Declared in     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Defines various Delivery Status Notification options for SMTP protocol.

Declaration

[C#]
    TSBSMTPDSNOption = short;
        const short sdnSuccess = 0;
        const short sdnFailure = 1;
        const short sdnDelay = 2;

[VB.NET]
    TSBSMTPDSNOption As Short
        Const sdnSuccess As Short = 0
        Const sdnFailure As Short = 1
        Const sdnDelay As Short = 2

[Pascal]
    TSBSMTPDSNOption = (sdnSuccess, sdnFailure, sdnDelay);

[C++]
    typedef uint8_t TSBSMTPDSNOptionRaw;
    typedef enum { sdnSuccess = 0, sdnFailure = 1, sdnDelay = 2 } TSBSMTPDSNOption;
    
    typedef uint32_t TSBSMTPDSNOptionsRaw;
    typedef enum { f_sdnSuccess = 1, f_sdnFailure = 2, f_sdnDelay = 4 } TSBSMTPDSNOptions;

[PHP]
    class TSBSMTPDSNOption extends TSBBaseEnum {
        const sdnSuccess = 0;
        const sdnFailure = 1;
        const sdnDelay = 2;
    }

[Java]
    not available

Possible values

Declared in

.NET:
  • Namespace: SBSMTPClient
  • Assembly: SecureBlackbox.Mail
VCL:
  • Unit: SBSMTPClient
Java:
  • Package: SecureBlackbox.Mail.jar
C++:
  • sbsmtpclient.h

Discuss this help topic in SecureBlackbox Forum