To add the payment method that the customer has chosen to the confirmation email do the following:
* browse to your site folder and locate 'OrderScript.pl' (take a backup)
* edit this file in a text editor such as notepad
* search for 'CUSTOMER_NAME'
* you will see...
$ACTINIC::B2B->SetXML('CUSTOMER_NAME',$sName);
* insert the following after this line:
$ACTINIC::B2B->SetXML('PAYMENT_METHOD', $$::g_pPaymentList{$::g_PaymentInfo{METHOD}}{PROMPT});
* save and close the file
* within Actinic you then need to add the variable to show the payment method into the 'Customer Email' layout
* on the 'Design' tab, select 'Customer email' from the 'Select Page Type' drop-down box
* in the 'layout code' window insert the following where you want the payment method to appear.
Payment method: <Actinic:PAYMENT_METHOD/>
* click 'Apply' and update your site
* browse to your site folder and locate 'OrderScript.pl' (take a backup)
* edit this file in a text editor such as notepad
* search for 'CUSTOMER_NAME'
* you will see...
$ACTINIC::B2B->SetXML('CUSTOMER_NAME',$sName);
* insert the following after this line:
$ACTINIC::B2B->SetXML('PAYMENT_METHOD', $$::g_pPaymentList{$::g_PaymentInfo{METHOD}}{PROMPT});
* save and close the file
* within Actinic you then need to add the variable to show the payment method into the 'Customer Email' layout
* on the 'Design' tab, select 'Customer email' from the 'Select Page Type' drop-down box
* in the 'layout code' window insert the following where you want the payment method to appear.
Payment method: <Actinic:PAYMENT_METHOD/>
* click 'Apply' and update your site
Comment