is it possible that i can make payment links for my programs in moneybookers like i did in paypal.... so that i can put them on my website.... please let me know...
please help me so that i can know before i register at moneybookers.com.... if this option is not there then i will not register... i dont get the info in there help page... so people who already register there please tell me some more details if i can make payment links for my programs or not so that i can add it on my site buy button.... please help.......
ok thanks for letting me know.... but where is the option please let me know..... and thanks once again as now i can get a account there....
ah and one more question. can i withdraw money from india or what type of checks they send? and can i deposit the check at my State Bank of India (SBI) account?
After you login your account just click the Benefits tab, click on the Merchant Services tab and you will see all the information you need to integrate it in your website. HTH.
Just paste this code into your html <form action="https://www.moneybookers.com/app/payment.pl" method="post" target="_blank"> <input type="hidden" name="pay_to_email" value="ENTER_YOUR_USER_EMAIL@MERCHANT.COM"> <input type="hidden" name="status_url" value="EMAIL_TO_RECEIVE_PAYMENT_NOTIFICATION@MERCHANT.COM"> <input type="hidden" name="language" value="EN"> <input type="hidden" name="amount" value="ENTER_PAYMENT_AMOUNT_(EXAMPLE:39.60)"> <input type="hidden" name="currency" value="ENTER_3_DIGIT_CURRRENCY_CODE_(EXAMPLE:EUR)"> <input type="hidden" name="detail1_description" value="SPECIFY_WHAT_FOLLOWS_(EXAMPLE:Book:)"> <input type="hidden" name="detail1_text" value="PRODUCT_DESCRIPTION_EXAMPLE:Romeo and Juliet"> <input type="submit" value="Pay!"> </form> HTML: Change the bold parts to meet your requirements. Also, if you want to use an image instead of a button Use the <input type="image" tag instead of the <input type="submit" tag. For example... <input type="image" name="myclicker" src="image.jpg" width="55" height="22"> HTML: