Details not making it to Email
Hi,
I have created a site using eCart and have Universal Email to creat to receipt. The UE receipt is sent when the confirm.asp page is submitted which then goes to the Checkout_success.asp page. All the relevant information carries accross to the success page but the emailed receipt does not contain the ORDER_ID or the Credit Card info.
I gave the following on the email receipt:
ORDER ID
<%=Session("ts08usa_OrderID")%>
CREDIT CARD No.
<% If Len(Session("eCartCheckoutForm_cc_number")) < 4 Then Response.Write(Session
("eCartCheckoutForm_cc_number")) Else Response.Write(Right(Session("eCartCheckoutForm_cc_number"),4)) End If %>
From what I can see the Order ID is created at the checkout success page and if so teh confirm page that sends the Universal Email will not have that orderID to give. The credit card number, however, is on the confirm page so I have no idea why that is not making it to the emailed receipt.
Hope you can help
Kelly