Monday, 13 October 2014

Get customer email on success page magento


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:

Anonymous said...

Hi,

there is anyway to check if this email is newsletter subscribe?