| DeliveryNotificationOptions Enumeration |
Describes the delivery notification options (Delivery Status Notifications, DSN) for email.
You can use
DeliveryNotification to set delivery options.
Namespace:
Limilabs.Client.SMTP
Assembly:
Mail (in Mail.dll) Version: 3.0.23341.1754
Syntax [SerializableAttribute]
[FlagsAttribute]
public enum DeliveryNotificationOptions
<SerializableAttribute>
<FlagsAttribute>
Public Enumeration DeliveryNotificationOptions
[SerializableAttribute]
[FlagsAttribute]
public enum class DeliveryNotificationOptions
[<SerializableAttribute>]
[<FlagsAttribute>]
type DeliveryNotificationOptions
Members
| Member name | Value | Description |
---|
| None | 0 |
No notification information will be sent. The mail server will utilize its configured behavior to determine whether it should generate a delivery notification.
|
| OnSuccess | 2 |
Notify if the delivery is successful.
|
| OnFailure | 4 |
Notify if the delivery is unsuccessful.
|
| Delay | 8 |
Notify if the delivery is delayed.
|
| Never | 16 |
A notification should not be generated under any circumstances.
|
See Also