Hi,
Would you like to change the Reset Password Email Notification?
You will need to use some custom code:
1. Create an empty plugin like this: https://gist.github.com/sareiodata/76f701e01db6685829db
2. Add the following code to the end of it:
/*
* Change the Password Reset email sent to users. Tags: password reset, email
*/
add_filter('wppb_recover_password_message_content_sent_to_user1', 'wppbc_change_pass_reset_email', 10, 3);
function wppbc_change_pass_reset_email($recoveruserMailMessage1, $requestedUserID, $requestedUserLogin ){
//search if there is already an activation key present, if not create one
$key = wppb_retrieve_activation_key( $requestedUserLogin );
return sprintf( __('Custom Text. It appears someone requested that the password be reset for the following account: <b>%1$s</b><br/>If this was a mistake, just ignore this email and nothing will happen.<br/>To reset your password, visit the following link: <a href="%2$s">Reset Link</a>', 'profilebuilder'), $requestedUserLogin, add_query_arg( array( 'loginName' => $requestedUserLogin, 'key' => $key ), wppb_curpageurl() ).add_query_arg( array( 'loginName' => $requestedUserLogin, 'key' => $key ), wppb_curpageurl() ));
}
/*
* Change the Password Reset success email sent to users. Tags: password reset, email, success
*/
add_filter('wppb_recover_password_message_content_sent_to_user2', 'wppbc_email_on_successful_pass_reset', 10, 2 );
function wppb_remove_password_from_email_on_successful_reset($message, $username){
$message = sprintf( __( 'Custom Text. You have successfully reset your password to your username: %1$s', 'profilebuilder' ), $username );
return $message;
}
3. Replace “Custom Text” with your own text. Do not remove the %1$s variable. With the custom code above you can change the Reset Password Email Notification and also the Success Email Notification sent after the reset.
Install this plugin via FTP (copy it inside wp-content/plugins) or create a zip archive with it and install it via the WordPress plugin upload functionality
Let me know if it works.
Best regards