DeliveryStatusParserProcess Method
Examines the specified MailMessage for delivery status notification (DSN) and returns its details.

Namespace: MailBee.BounceMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public Result Process(
	MailMessage message
)

Parameters

message
Type: MailBee.MimeMailMessage
The MailMessage object to be examined.

Return Value

Type: Result
DSN details extracted from the specified e-mail message, or a null reference (Nothing in Visual Basic) if the message does not contain any DSN.
Exceptions
ExceptionCondition
MailBeeInvalidArgumentExceptionmessage is a null reference (Nothing in Visual Basic)
Remarks
It's possible that the message is DSN of rare format which is not yet known to MailBee. In this case, contact us so that we would be able to add this format into DSN template database.
Examples
The example is available in DeliveryStatusParser topic.
See Also