Get customer email on success page magento
Some times people wants to display email address on order succes page. Here i have written the small code for this....
<?php
$order = Mage::getModel('sales/order')->loadByIncrementId($this->getOrderId());
echo $order->getCustomerEmail();
?>