In our system, we have a user management page, where administrators can reset users' passwords, and of course they can reset them themselves on the login screen.
At the moment, we are using the APEX_UTIL.RESET_PW(<username>,<message>) function to send out new password emails, which includes both the login name and password.
For compliance reasons, we want to stop sending the username out in these emails, but there doesn't seem to be a way to do this with the RESET_PW function.
Is there a way to modify the RESET_PW function so that it does not include the username?
If not, is there another way to reset a user's password and send an email out to them, with only the password in the message?