DsnRecipientStatus Property
Gets the string description of the status and the dot-numeric status code.

Namespace: MailBee.BounceMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public string Status { get; }

Property Value

Type: String
A string value with the description of the status and the dot-numeric status code taken from "Status" DSN field.
Remarks

The per-recipient Status field contains a transport-independent status code which indicates the delivery status of the message to that recipient. This field MUST be present for each delivery attempt which is described by a DSN.

Status codes thus consist of three numerical fields separated by dot ("."). The first sub-field indicates whether the delivery attempt was successful (2 = success, 4 = persistent temporary failure, 5 = permanent failure). The second sub-field indicates the probable source of any delivery anomalies, and the third sub-field denotes a precise error condition, if known.

In this example, DSN field is:
Status: 5.1.1
The return value is marked bold.

See Also