i tried this code but nothing happens
add_action('comment_post', function() {
    $email = get_bloginfo('admin_email');
    wp_mail(
        $email,
        'New Comment Posted',
        'A new comment has been left on your blog.'
    );
});
i tried this code but nothing happens
add_action('comment_post', function() {
    $email = get_bloginfo('admin_email');
    wp_mail(
        $email,
        'New Comment Posted',
        'A new comment has been left on your blog.'
    );
});