一旦客户点击下订单按钮,我试图让客户的姓名、电子邮件和订单号传递到支付网关。到目前为止,我已经设法使用
$total = Mage::getModel('checkout/cart')->getQuote()->getGrandTotal();
我尝试使用
Mage::getSingleton('customer/session')->getCustomer();
$email = $customer->getEmail();
$firstname = $customer->getFirstname();
$lastname= $customer->getLastname();
但它们似乎没有返回值。我知道这一点是因为我在之后回显了变量,除了 $total 之外,它们都不起作用。帮助将不胜感激。