This code snippet is over a year old, from before WooCommerce 2.0. I don’t know if this function works with WooCommerce 2.0+.
// add email to the 'My Account' page
function isawoo_after_my_account() {
global $woocommerce, $current_user;
get_currentuserinfo();
$value = $current_user->user_email;
echo '<p><strong>Email address:</strong> '.$value.'</p>';
}
add_action('woocommerce_after_my_account','isawoo_after_my_account');
Questions and Comments are Welcome