Jump to content

Moneybookers email template


Recommended Posts

I have enabled Moneybookers module. I had some difficulties receiving orders whith Moneybookers. Customer made order and paid with Moneybooker - I recieved money but did not get order. I fixed problem with installing Moneybookers module version 1.6.

 

Now I have another problem. When you choose to pay with Moneybookers and select debit card, you get new mail with bankwire. Interesting is that there is no Bank account data:

 

{bankwire_owner}

 

{bankwire_details}

 

{bankwire_address}

 

If you select payment with bankwire you recieve the same email template but with correct Bank data of my Bank account. So where should I edit settings?

Thanks.

Link to comment
Share on other sites

I can't find nothing about Monebookers in mail template in ORder, statusses.

 

I guess Moneybookers is somehow removed from statusses, maybe with changing Moneybookers version?

 

How can I set right? Should I add new status and name it Moneybookers? Which options should I thick in?

 

Thx

Link to comment
Share on other sites

Moneybookers must have the Payment accepted option, becouse is like paypal

Check if in the validation.php of the module you have assigned the same validation id like in paypal module

the function is something like this, but with paypal (the id is in this example Configuration::get('WESTERNUNION_STATE1'))

 

 

$westernunion->validateOrder($cart->id, Configuration::get('WESTERNUNION_STATE1'), $total, $westernunion->displayName, NULL, $mailVars, $currency->id);

}

Link to comment
Share on other sites

my validate.php:

 

switch ($status)

{

/* Bankwire */

case 0:

$moneyBookers->setTransactionDetail($_POST);

$moneyBookers->validateOrder((int)($secure_cart[0]), Configuration::get('PS_OS_BANKWIRE'), (float)($_POST['amount']), $moneyBookers->displayName, $message, array(), NULL, false, $secure_cart[2]);

break;

 

/* Payment OK */

case 2:

$moneyBookers->setTransactionDetail($_POST);

$moneyBookers->validateOrder((int)($secure_cart[0]), Configuration::get('PS_OS_PAYMENT'), (float)($_POST['amount']), $moneyBookers->displayName, $message, array(), NULL, false, $secure_cart[2]);

break;

Link to comment
Share on other sites

×
×
  • Create New...