RecipientStatusSource Enumeration
Defines from which parts of the DSN message MailBee should load RecipientStatus object.

Namespace: MailBee.BounceMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public enum RecipientStatusSource
Members
  Member nameValueDescription
DsnThenText0 Loads RecipientStatus object from the DSN attachment if available; otherwise, from the message body text.
Dsn1 Always loads RecipientStatus object only from the DSN attachment. If the DSN attachment is missing in the notification message, most RecipientStatus properties will return a null reference.
TextThenDsn2 Loads RecipientStatus object from the message body text if available; otherwise, from the DSN attachment.
Text3 Always loads RecipientStatus object only from the message body text. If the message body text is missing in the notification message, most RecipientStatus properties will return a null reference.
Remarks

Because DSN messages may contain duplicated information in different formats, you can tell MailBee the exact order of obtaining such information. Usually, more detailed and precise data is contained in DSN attachment while text description is less formal and less reliable.

You can set this mode using Source property.

See Also