Try this. Place the following code in functions.php file. I have it at the end of the page.
function rss_thumbnail($content) {
global $post;
if(has_post_thumbnail($post->ID)) {
$content = ‘<p>’.get_the_post_thumbnail($post->ID).'</p>’.get_the_content();
}
return $content;
}
add_filter(‘the_excerpt_rss’, ‘rss_thumbnail’);
add_filter(‘the_content_feed’, ‘rss_thumbnail’);