I am trying to get the email address that the user enters on the onepage checkout - I have tried the following but I cannot see the email address anywhere within either object - any ideas?

Mage::getSingleton('checkout/session')->getQuote()->getShippingAddress()->getData();

Mage::getSingleton('checkout/session')->getQuote()->getBillingAddress()->getData();
有帮助吗?

解决方案

try the below

Mage::getSingleton('checkout/session')->getQuote()->getBillingAddress()->getEmail();

其他提示

Try

$quote = Mage::getSingleton('checkout/session')->getQuote();
echo $quote->getCustomerEmail()
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top