PasswordRecovery.SendingMail Event

Occurs before the user is sent a password in e-mail.

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)

public:
event MailMessageEventHandler^ SendingMail {
	void add (MailMessageEventHandler^ value);
	void remove (MailMessageEventHandler^ value);
}
/** @event */
public void add_SendingMail (MailMessageEventHandler value)

/** @event */
public void remove_SendingMail (MailMessageEventHandler value)

In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.

The SendingMail event occurs on the server after the user requests a new or recovered password and submits a correct answer to the password confirmation question (if your membership provider supports password question and answer), but before the password is sent to the user in e-mail. Use this event to do any special processing required before sending the e-mail message, such as setting MailMessage properties.

After the user enters a valid user name and, if relevant, a valid answer, the PasswordRecovery control raises the SendingMail event, and then sends the password information to the user in e-mail. The e-mail uses the settings defined in the <smtpMail> configuration file element.

For more information about handling events, see Consuming Events.

The following code example uses the SendingMail event to set properties of the MailMessage object that contains the e-mail message.

No code example is currently available or this language may not be supported.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: