You can change the notification email subject with a PHP code snippet like this:
add_filter('site-reviews/notification/title', function ($title, $review) { return sprintf('A review with a %s-star rating was submitted on your page.', $review->rating); }, 10, 2);