2016-09-09 6 views
7

मैं पहले महीने के लिए $ 47/माह चार्ज करना चाहता हूं। फिर हर अतिरिक्त महीने के लिए केवल $ 37। अनिवार्य रूप से, यदि वे मेरे साथ रहते हैं तो आवर्ती भुगतान छूटना चाहते हैं।अतिरिक्त पुनरावर्ती भुगतान कैसे छूटें?

मैं पेपैल बटन में यह कैसे कर सकता हूं?

उत्तर

2
<form action="https://www.paypal.com/cgi-bin/webscr" method="POST"> 
    <input type="hidden" name="cmd" value="_xclick-subscriptions"> 
    <input type="hidden" name="business" value="[email protected]"> 
    <input type="hidden" name="item_name" value="Subscription description here"> 
    <input type="hidden" name="currency_code" value="USD"> 
    <input type="hidden" name="a1" value="47.00"> <!-- Set this to the price you want to charge them upfront --> 
    <input type="hidden" name="p1" value="1"> <!-- Set the length of the trial to 1 interval (t1 will define the interval) --> 
    <input type="hidden" name="t1" value="M"> <!-- Set the interval to months -- trial is now one month in length --> 
    <input type="hidden" name="a3" value="37.00"> <!-- Amount to charge each month --> 
    <input type="hidden" name="p3" value="1"> 
    <input type="hidden" name="t3" value="M"> <!-- Payments are one month apart --> 
    <input type="hidden" name="src" value="1"> <!-- Payments don't automatically stop --> 
    <input type="image" alt="PayPal - The safer, easier way to pay online!" src="https://www.paypal.com/en_US/i/btn/btn_subscribe_LG.gif"> 
</form> 
+0

तो आपका समाधान एक परीक्षण तैयार करना है जो उत्पाद की तुलना में अनिवार्य और उच्च मूल्य है? – User

+0

हाँ। परीक्षण अवधि के लिए आप आमतौर पर क्या सोचते हैं, लेकिन यह एक बिल्कुल वैध उपयोग केस नहीं है। –

+0

यह पूरी तरह से काम करेगा, जब तक पेपैल शब्द "परीक्षण" नहीं कहता। चूंकि उत्पाद वास्तव में $ 47/माह है, लेकिन यदि आप घूमते हैं तो यह केवल $ 37/माह है। – User

संबंधित मुद्दे