DetailedType Enumeration
Defines the extended types of delivery notification messages.

Namespace: MailBee.BounceMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public enum DetailedType
Members
  Member nameValueDescription
Hard0 Hard bounce. The message could not be delivered to the recipient and it's not worth trying to resend it later.
Soft1 Soft bounce. The message was not delivered to the recipient this time, but you can retry to deliver it later.
Spam2 The message is treated as spam.
Virus3 The message contains a virus.
ChallengeResponse4 A challenge response was issued to check whether the original message was sent by a human rather than by a spam robot. You should follow the instructions in the bounce message to confirm delivery of the original message.
OtherBlocked5 The message was blocked for undefined reason.
AutoReply6 This notification contains auto-reply to the original message.
AddressChanged7 The recepient address was changed. Please update your address book.
Modified8 The message was modified.
Forwarded9 The message was forwarded.
Subscribe10 The notification on subscription event.
Unsubscribe11 The notification on unsubscription event.
Temporary12 The message is still not delivered to the recipient but you should not yet attempt to resend it because the mail server will retry to resend it later.
Delivered13 The message was successfully delivered to the recepient.
Read14 The message was read by the recepient.
UserDefined15 You can find the type of the delivery notification message using ResultItem.UserDefined property.
Unknown16 An unknown notification message.
Remarks
This is more detailed version of CommonType. To obtain the extended status of the delivery to certain recipient, use Detailed property of RecipientStatus object which corresponds to the given recipient. See CommonType topic for more information on how to obtain RecipientStatus object for the given recipient.
See Also