Discuss this help topic in SecureBlackbox Forum
...
Declaration
[C#/Java]
TSBSMTPDSNOption = short;
const short sdnSuccess = 1;
const short sdnFailure = 2;
const short sdnDelay = 4;
[VB.NET]
TSBSMTPDSNOption As SmallInt;
Const sdnSuccess As SmallInt = 1
Const sdnFailure As SmallInt = 2
Const sdnDelay As SmallInt = 4
[Pascal]
TSBSMTPDSNOption = (sdnSuccess, sdnFailure, sdnDelay);
[C++]
typedef uint8_t TSBSMTPDSNOptionRaw;
typedef enum { sdnSuccess = 0, sdnFailure = 1, sdnDelay = 2, soRawCountersign = 3 } TSBSMTPDSNOption;
typedef uint32_t TSBSMTPDSNOptionsRaw;
typedef enum { f_sdnSuccess = 1, f_sdnFailure = 2, f_sdnDelay = 4 } TSBSMTPDSNOptions;
Description
Possible values:
Declared in
.NET:
- Namespace: SBSMTPClient
- Assembly: SecureBlackbox.Mail
VCL:Java:
- Package: SecureBlackbox.Mail.jar
C++:
Discuss this help topic in SecureBlackbox Forum