Hello,
I am using the method ChargeCreditCard in my integration with C#, and I am creating the customerAddressType with the email information of the customer but the email not is not including in the transaction received, so the customer does not receive the payment email confirmation.
I provide the customer email in the object:
var billingAddress = new customerAddressType
{
firstName = FirstName,
lastName = LastName,
address = Address,
city = City,
zip = Zip,
email = EmailCliente
};
Please could you tell me if I am doing anything wrong?
Thanks, Javier.
01-27-2024 03:26 PM