Skip to main content The new Salesforce certifications experience is live! Visit Trailhead Academy to explore your new certifications homepage.
 Are there modules to integrate paypal payments processing into salesforce?
2 answers
Loading
  1. May 12, 2017, 6:21 AM
    Hi,

     

    Try this..

     

    <form action="https://www.paypal.com/cgi-bin/webscr" method="post">

     

      <!-- Identify your business so that you can collect the payments. -->

     

      <input type="hidden" name="business" value="herschelgomez@xyzzyu.com"/>

     

      <!-- Specify a Buy Now button. -->

     

      <input type="hidden" name="cmd" value="_xclick"/>

     

      <!-- Specify details about the item that buyers will purchase. -->

     

      <input type="hidden" name="item_name" value="Hot Sauce-12oz. Bottle"/>

     

      <input type="hidden" name="amount" value="5.95"/>

     

      <input type="hidden" name="currency_code" value="USD"/>

     

      <!-- Display the payment button. -->

     

      <input type="image" name="submit" border="0"

     

      src="https://www.paypalobjects.com/webstatic/en_US/i/btn/png/btn_buynow_107x26.png"

     

      alt="Buy Now"/>

     

      <img alt="" border="0" width="1" height="1"

     

      src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif"/>

     

    </form>
0/9000