PasswordRecovery.SendMailError Event

Definition

Occurs when the SMTP Mail system throws an error while attempting to send an email message.

public:
 event System::Web::UI::WebControls::SendMailErrorEventHandler ^ SendMailError;
public event System.Web.UI.WebControls.SendMailErrorEventHandler SendMailError;
member this.SendMailError : System.Web.UI.WebControls.SendMailErrorEventHandler 
Public Custom Event SendMailError As SendMailErrorEventHandler 

Event Type

Remarks

The SendMailError event is raised when the SMTP mail server throws an exception when trying to send an email message.

The default SendMailError event does not handle the SMTP error from the mail system. The method that handles the SendMailError event must set the Handled property of the SendMailErrorEventArgs object to true to handle the error and prevent it from being displayed to the user.

For more information about handling events, see Handling and Raising Events.

Applies to

See also