I need password reset link in reset password email not auto generated password
-
Hi,
Thanks for this plugin.
I need to get password reset form link in my email instead of auto generated password after clicking on forgot paqssword link and providing email id. i will provide my email id in forgot password page and will get a link of password reset in my mail. After clicking on that link i will redirected to a page where i can set my password like that. I have used following hook also`add_filter( ‘wpmem_email_repass’, ‘my_email_filter’ );
function my_email_filter( $email_content ) {
$email_content = “This is added to the beginning”
. $email_content
. “I put this on the end”;return $email_content;
}`
- The topic ‘I need password reset link in reset password email not auto generated password’ is closed to new replies.