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();
?>
1 comment:
Hi,
there is anyway to check if this email is newsletter subscribe?
Post a Comment