Comment notification not working

I do not see the $comment_ID variable having any value in your code. So try by changing the following code

wp_notify_postauthor($comment_ID, $comment->comment_type);

to

wp_notify_postauthor($comment->comment_ID, $comment->comment_type);

You can also remove $comment->comment_type as per codex