Class UserForgotPasswordChangedNotification
Notification published when a user's password has been changed via the "forgot password" flow.
Namespace: Umbraco.Cms.Core.Notifications
Assembly: Umbraco.Core.dll
Syntax
public class UserForgotPasswordChangedNotification : UserNotification, INotification
Remarks
This notification is published after a user has successfully changed their password through the password reset mechanism.
Constructors
View SourceUserForgotPasswordChangedNotification(string, string, string)
Initializes a new instance of the UserForgotPasswordChangedNotification class.
Declaration
public UserForgotPasswordChangedNotification(string ipAddress, string affectedUserId, string performingUserId)
Parameters
| Type | Name | Description |
|---|---|---|
| string | ipAddress | The source IP address of the user changing the password. |
| string | affectedUserId | The ID of the user whose password was changed. |
| string | performingUserId | The ID of the user performing the password change. |