Include content post WordPress – Email notification

Use this function:

function word_count() {
    $content = get_post_field( 'post_content', $post->ID );
    $word_count = str_word_count( strip_tags( $content ) );
    return $word_count;
}

then call it to display the word count:

echo word_count();