I'm using the PayMate module and it's a big step up from 1.1. I've got it working nicely and it is transferring the correct data to the system, however it doesn't transfer the buyers details. These need to be manually filled in a second time, adding another layer of unnecessary bother for the customer. I just need some help to edit the config to pass these parameters on.
The current config is:
<script language=\"javascript\">
function openExpress(){
var url = '
https://www.paymate.com.au/PayMate/ExpressPayment?mid=<?php echo PAYMATE_USERNAME.\"&amt=\".$db->f(\"order_total\").\"¤cy=\".$_SESSION['vendor_currency'].\"&ref=\".$db->f(\"order_id\").\"&pmt_sender_email=\".$user->email;?>' var newWin = window.open(url, 'wizard', 'height=580,width=500,scrollbars=1,toolbar=no');
self.name = 'parent';
newWin.focus();
}
</script>
<div align=\"center\">
<p>
<a href=\"javascript:openExpress();\">
<img src=\"
https://www.paymate.com.au/images/Paymate-Express-Banner-190x60.gif\" border=\"0\" alt=\"Pay with Paymate Express\">
<br />click here to pay your account
</p>
</div>
As I'm totally illiterate can someone tell me what the parameters are for:
pmt_sender_email - The buyer's email address
pmt_contact_firstname - The buyer's first name
pmt_contact_surname - The buyer's surname
regindi_address1 - The first address line of the buyer's address
regindi_address2 - The second address line of the buyer's address
regindi_sub - The suburb of the buyer's address
regindi_pcode - The postcode of the buyer's address
so I can add these into the config.
Also Paymate offers a return feature. Is there a page in the system to accept this info and show the customer that their payment is processed?
Thanks in advance