using System;
namespace System.Net.Mail
{
/// Describes the delivery notification options for e-mail.
// Token: 0x0200013B RID: 315
[Flags]
public enum DeliveryNotificationOptions
{
/// No notification.
// Token: 0x04000B01 RID: 2817
None = 0,
/// Notify if the delivery is successful.
// Token: 0x04000B02 RID: 2818
OnSuccess = 1,
/// Notify if the delivery is unsuccessful.
// Token: 0x04000B03 RID: 2819
OnFailure = 2,
/// Notify if the delivery is delayed
// Token: 0x04000B04 RID: 2820
Delay = 4,
/// Never notify.
// Token: 0x04000B05 RID: 2821
Never = 134217728
}
}