I'm trying to add email address of customers in Billing Information to transactional email. I'm using 1.7 version of Magento. Can anybody please help me?
{{var order.getBillingAddress().format('html')}}
I did a bit of research and I found the answer suggesting to add
{{var.order.getCustomerEmail()}}
underneath:
{{var order.getShippingAddress().format('html')}}
in the transactional email templates in admin
Is that correct?
Thank you