Get the email address from the Billing Object in Magento (Checkout)

StackOverflow https://stackoverflow.com/questions/23658178

  •  22-07-2023
  •  | 
  •  

سؤال

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