mscorlib(4.0.0.0) API with additions
DeliveryNotificationOptions.cs
1 namespace System.Net.Mail
2 {
4  [Flags]
6  {
8  None = 0x0,
10  OnSuccess = 0x1,
12  OnFailure = 0x2,
14  Delay = 0x4,
16  Never = 0x8000000
17  }
18 }
Notify if the delivery is delayed.
Notify if the delivery is successful.
Notify if the delivery is unsuccessful.
DeliveryNotificationOptions
Describes the delivery notification options for e-mail.