There isn’t anything built in. If each sender is a user on your site many themes have the option of displaying the author.
Otherwise you would need to create a Postie addon. http://postieplugin.com/extending/
OK thanks. So for anyone who wants to include the sender name and email in the text body, I put this code into wp-content/filterPostie.php :
add_filter('postie_post_before', 'my_postie_post_before', 10, 2 );
function my_postie_post_before($post, $headers) {
$post['post_content'] = "From: " .$headers['from']['personal'] ." - " . $headers['from']['mailbox'] ."@" . $headers['from']['host'] ." ". $post['post_content'] ;
return $post;
}