Catalyst Internet Mail .NET

InternetMail.OnDelivered Event

Occurs when a message has been submitted for delivery.

[Visual Basic]
Public Event OnDelivered As OnDeliveredEventHandler
[C#]
public event OnDeliveredEventHandler OnDelivered;

Event Data

The event handler receives an argument of type InternetMail.DeliveredEventArgs containing data related to this event. The following InternetMail.DeliveredEventArgs properties provide information specific to this event.

Property Description
Address Gets the email address of the message recipient.
MessageSize Gets a value which specifies the total number of bytes in the message.

Remarks

The OnDelivered event is generated when a message has been successfully submitted to the mail server for delivery. If multiple recipients have been specified for the message, this event will fire for each recipient, enabling the application to update its user interface as the message is delivered.

See Also

InternetMail Class | SocketTools Namespace