paypal - Payal Checkout. Change receiver's name -


instead of toaster@gmail.com (receiver's email) need company name.

my code:

<form id="paymentform" action="https://www.sandbox.paypal.com/cgi-bin/webscr" name="paymentform" method="post">         <input type="hidden" name="cmd" value="_ext-enter">         <input type="hidden" name="redirect_cmd" value="_xclick">         <input type="hidden" name="cn" value="my dev site">         <input type="hidden" name="business" value="toaster@gmail.com">         <input type="hidden" name="notify_url" value="http://toaster22.com/checkout/notify">         <input type="hidden" name="return" value="http://toaster22.com/checkout/success">         <input type="hidden" name="cancel_return" value="http://toaster22.com/checkout/cancel">         <input type="hidden" name="rm" value="2">         <input type="hidden" name="handling" value="0.00">         <input type="hidden" name="tax" value="0.00">         <input type="hidden" name="charset" value="utf-8">         <input type="hidden" name="no_shipping" value="1">         <input type="hidden" name="no_note" value="1">         <input type="hidden" name="item_name" value="order #427e-85ff-028e-e351">         <input type="hidden" name="invoice" value="427e-85ff-028e-e351">         <input type="hidden" name="amount" value="23.47">         <input type="hidden" name="currency_code" value="usd">         <input type="hidden" name="address_override" value="0"> </form> 

what option can use that?

if mean want display company name buyer in paypal flow, use receiver account registered business account. still identify receiver email in button; nothing needs change in button.

paypal display email address unregistered seller, accountholder's name personal/premier account, , business name business account.


Comments

Popular posts from this blog

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -