我正在使用 Authorize.net CIM XML 方法在我的一个网站上付款。我已经成功实现了这个支付网关并收到了电子邮件收据。
但问题是,电子邮件收据不显示逐项信息。我还为项目详细信息提供了以下代码:
<lineItems>
<itemId>ITEM00001</itemId>
<name>name of item sold</name>
<description>Description of item sold</description>
<quantity>1</quantity>
<unitPrice>6.95</unitPrice>
<taxable>true</taxable>
</lineItems>
<lineItems>
<itemId>ITEM00002</itemId>
<name>name of other item sold</name>
<description>Description of other item sold</description>
<quantity>1</quantity>
<unitPrice>1.00</unitPrice>
<taxable>true</taxable>
</lineItems>
那么有人可以帮助我吗?提前致谢。