Add Email to My Account Page in WooCommerce

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');

See more:

Questions and Comments are Welcome

Your email address will not be published. All comments will be moderated.

Please wrap code in "code" bracket tags like this:

[code]

YOUR CODE HERE 

[/code]