Discuss this help topic in SecureBlackbox Forum
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
[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;
}
Possible values
Declared in
.NET:
- Namespace: SBSMTPClient
- Assembly: SecureBlackbox.Mail
VCL:Java:
- Package: SecureBlackbox.Mail.jar
C++:
Discuss this help topic in SecureBlackbox Forum