Jump to content

remcorhee

Member
  • Posts

    11
  • Joined

  • Last visited

About remcorhee

remcorhee's Achievements

Junior Member

Junior Member (1/3)

0

Reputation

  1. Sort out a lot of things allready Is there a way to change the format of the amount? Icepay wants it in cents.... so without the "." Hope you can help. Best Regards, Remco
  2. Hi! I am trying to integrate another payment gateway. Its slowly getting there.. but WHen I try to pay with this method, it still asks the client to give creditcard-name, number, etc. But it shoud be re-directed to icepay...how to delete the CC-part and let it go to the gateway of icepay. the code i used in the .php file (sorry, it's still a bit messy, but then I know where I came from ) <?php function iDeal_config() { $configarray = array( "FriendlyName" => array("Type" => "System", "Value"=>"iDeal"), "instructions" => array("FriendlyName" => "Betalingsinstructie", "Type" => "textarea", "Rows" => "5", "Description" => "Do this then do that etc...", ), ); return $configarray; } function iDeal_link($params) { # Gateway Specific Variables $gatewayusername = $params['username']; $gatewaytestmode = $params['testmode']; $IC_Merchant ="12818"; $IC_Country = "NL"; $IC_Encryptioncode = "n9TLr43SmMa56Hpt7E8WdZz39Nbu5AGf4c7D8Rsq"; $IC_PaymentMethod = "IDEAL"; $IC_Issuer = "ABNAMRO,ASNBANK,FORTIS,FRIESLAND,ING,RABOBANK,SNSBANK,TRIODOSBANK"; # Invoice Variables $invoiceid = $params['invoiceid']; $IC_OrderID = $params['invoiceid']; $description = $params["description"]; $IC_Description = $params["description"]; $amount = $params['amount']; # Format: ##.## $currency = $params['currency']; # Currency Code $IC_Amount = $params['amount']; # Format: ##.## $IC_Currency ="EUR"; # Currency Cod $IC_Language ="NL"; # Client Variables $firstname = $params['clientdetails']['firstname']; $lastname = $params['clientdetails']['lastname']; $ConsumerName = $params['clientdetails']['firstname']['lastname']; $email = $params['clientdetails']['email']; $ConsumerEmail = $params['clientdetails']['email']; $address1 = $params['clientdetails']['address1']; $address2 = $params['clientdetails']['address2']; $ConsumerAddress = $params['clientdetails']['address1']; $ConsumerHouseNumber = $params['clientdetails']['address2']; $city = $params['clientdetails']['city']; $ConsumerCity = $params['clientdetails']['city']; $state = $params['clientdetails']['state']; $postcode = $params['clientdetails']['postcode']; $country = $params['clientdetails']['country']; $Consumer_Country = $params['clientdetails']['country']; $phone = $params['clientdetails']['phonenumber']; $ConsumerPhoneNumber = $params['clientdetails']['phonenumber']; # System Variables $companyname = $params['companyname']; $systemurl = $params['systemurl']; $currency = $params['currency']; # aanmaken checksumcode gevraagd door IcePay $IC_Checksum = SHA1($IC_Encryptioncode."|".$IC_Merchant."|".$IC_Amount."|".$IC_Currency."|".$IC_OrderID."|".$IC_PaymentMethod."|".$IC_Issuer); # Enter your code submit to the gateway... $code = '<form method="POST" action="https://pay.icepay.eu/checkout.aspx"> <input type="hidden" name="ic_paymentMethod" value="CREDITCARD"> <input type="hidden" name="ic_issuer" value="'.$IC_Issuer.'"> <input type="hidden" name="ic_merchant" value="'.$IC_Merchant.'"> <input type="hidden" name="ic_amount" value="'.$IC_Amount.'"> <input type="hidden" name="ic_currency" value="'.$IC_Currency.'"> <input type="hidden" name="ic_language" value="'.$IC_Language.'"> <input type="hidden" name="ic_country" value="'.$IC_Country.'"> <input type="hidden" name="ic_orderid" value="'.$IC_OrderID.'"> <input type="hidden" name="ic_description" value="'.$IC_Description.'"> <input type="hidden" name="ic_checksum" value="'.$IC_Checksum.'"> <input type="submit" value="Betalen" /> </form>'; return $code; } ?> Hope you can help, best regards, Remco
  3. Hi! Is there a way to change the text in the auto-mail send when a New Client is add in the system? The mail with the title 'Welcome'. I see multiple forms in the emailtemplates of the setupmenu, but not for instance the welcome mail. Probably asked a thousand times on this forum, but again can not find it, so big . Hope someone can help, best regards, Remco
  4. Ok for the funny part: when I tick to send an auto mail with the password, the password is shown. When we send the mail to a client the password is shown as **** Cause we want to send the welcomemail in Dutch and don't know where to change the standard welcomemail we do it manually. But then the password is not shown... Thanks so far! best regards, Remco
  5. Yes the client is receiving Uw wachtwoord: ********** so they can not see there own password Hope some one can help. Best regards, Remco
  6. Right! found it, thanks, sorry Remco
  7. Hi! When we send an email to a client and the password is included, the password is not shown (displayed like: ********) What to change? (probably something easy, but do not see the right buton, link or setting) best regards, Remco
  8. Mail-piping is working correctly, and ticketnotifications are send once. For now manual send e-mails and the auto-welcome-mail are send double. Anyone any idea? best regards, Remco
  9. Great! I have started right away And ofcourse some questions occur. Icepay wants to know where to send the customer when a payment is done or did not succeed. ans also they wan postback url. So I have to give in 3 links there. Hope you can help! kind regards, Remco
  10. Hi! Is there a way to integrate another paymentgateway, for instance IcePay? Best regards, Remco
  11. Hi! We just installed WHCMS after first using it as a customer ourselves. So we know the frontend and now after installing are very enthousiastic about how easy everything is. But! We are no experts on this, so some questions come up. All our mail is send twice. Automail, mail manual send by WHCMS. I have looked up the forums and saw different similar problems, but not one the same or with a good answer. Probably i is there, but it is quit a big forum . Is there a way to edit the mail send automatically when a new client is registered? I know where to set that off when adding the new client, and then manual sent a mail, but if the standard mail can be adjusted that would be nice. So thats it for now with the mailingquestions Hope someone can help, thanks, best regards, Remco
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated