Defines the extended types of delivery notification messages.
Namespace: MailBee.BounceMailAssembly: MailBee.NET (in MailBee.NET.dll) Version: 12.5.0 build 687 for .NET 4.5
Syntax Public Enumeration DetailedType
Members
| Member name | Value | Description |
---|
| Hard | 0 |
Hard bounce. The message could not be delivered to the recipient and it's not worth trying to resend it later.
|
| Soft | 1 |
Soft bounce. The message was not delivered to the recipient this time, but you can retry to deliver it later.
|
| Spam | 2 |
The message is treated as spam.
|
| Virus | 3 |
The message contains a virus.
|
| ChallengeResponse | 4 |
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.
|
| OtherBlocked | 5 |
The message was blocked for undefined reason.
|
| AutoReply | 6 |
This notification contains auto-reply to the original message.
|
| AddressChanged | 7 |
The recepient address was changed. Please update your address book.
|
| Modified | 8 |
The message was modified.
|
| Forwarded | 9 |
The message was forwarded.
|
| Subscribe | 10 |
The notification on subscription event.
|
| Unsubscribe | 11 |
The notification on unsubscription event.
|
| Temporary | 12 |
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.
|
| Delivered | 13 |
The message was successfully delivered to the recepient.
|
| Read | 14 |
The message was read by the recepient.
|
| UserDefined | 15 |
You can find the type of the delivery notification message using
ResultItem.UserDefined property.
|
| Unknown | 16 |
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