Discuss this help topic in SecureBlackbox Forum

TSBSMTPDSNOptions

Declared in     See also     


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


Defines a set of DSN (Delivery Status Notification) options for SMTP protocol.

Declaration

[C#]
    TSBSMTPDSNOptions = int;
        const int sdnSuccess = 1;
        const int sdnFailure = 2;
        const int sdnDelay = 4;

[VB.NET]
    TSBSMTPDSNOptions As Integer
        Const sdnSuccess As Integer = 1
        Const sdnFailure As Integer = 2
        Const sdnDelay As Integer = 4

[Pascal]
    TSBSMTPDSNOptions = set of TSBSMTPDSNOption;

[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 TSBSMTPDSNOptions extends TSBBaseEnum {
        const sdnSuccess = 1;
        const sdnFailure = 2;
        const sdnDelay = 4;
    }

[Java]
    not available

Possible values

Declared in

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

See also:     TSBSMTPDSNOption    

Discuss this help topic in SecureBlackbox Forum