New_user_approve_user_approved
Perform A Custom Action After A User Has Been Approved. This Happens After The Email Has Been Sent And The User Meta Has Been Updated.
function user_approved() {
// add a custom action for when the user has been approved
}
add_action( 'new_user_approve_user_approved', 'user_approved' );