diff --git a/frappe/core/doctype/user/user.py b/frappe/core/doctype/user/user.py index 9afbb5de39..96891b53e1 100644 --- a/frappe/core/doctype/user/user.py +++ b/frappe/core/doctype/user/user.py @@ -1018,7 +1018,7 @@ def reset_password(user: str) -> str: user.reset_password(send_email=True) return frappe.msgprint( - msg=_("Password reset instructions have been sent to your email"), + msg=_("Password reset instructions have been sent to {}'s email").format(user.full_name), title=_("Password Email Sent"), ) except frappe.DoesNotExistError: