Same Problem here, Plugin updated version..Users get emails that they are approved, but admin does not receive the mails.Please help.
Note: I have used the below code to disable activation email to users..
// DISABLE ACTIVATION
function disable_validation( $user_id ) {
global $wpdb;
$wpdb->query( $wpdb->prepare( “UPDATE $wpdb->users SET user_status = 0 WHERE ID = %d”,
$user_id ) );
}
add_action( ‘bp_core_signup_user’, ‘disable_validation’ );
function fix_signup_form_validation_text() {
return false;
}
add_filter( ‘bp_registration_needs_activation’, ‘fix_signup_form_validation_text’ );
add_filter( ‘bp_core_signup_send_activation_key’, create_function(”,’return false;’) );