Forum Moderators: buckworks
But if someone without a PayPal account wants to make me a credit card payment of a non-standard amount (agreed separately), can they do this? I thought it was possible but looking around PayPal I can't actually see how.
You can request money from anyone with an email address in 55 countries and regions that accept PayPal. You can also bill customers even if they do not have a PayPal account.
The invoice feature is pretty cool as well.
I phoned PayPal earlier on for clarification, and they never mentioned this, but they confirmed that someone without a PayPal account can only make a credit card payment via a shopping cart - not by directly going to a page at PayPal.
Thanks for the pointer about the invoicing tool as well.
-Corey
But if someone without a PayPal account wants to make me a credit card payment of a non-standard amount (agreed separately), can they do this? I thought it was possible but looking around PayPal I can't actually see how.
Add the email address of your PayPal account at the end of this URL, and they can use it to pay you any amount:
[paypal.com...]
If you'd like, you can include the payment amount in the URL, e.g.:
[paypal.com...]
<form action="https://www.paypal.com/cgi-bin/webscr" target="paypal" method="post">
<input type="hidden" name="bn" value="">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="yourpaypalemail@yourdomain" >
<input type="hidden" name="item_name" value="Your Item Name">
<input type="hidden" name="item_number" value="Item Detail">
<input type="hidden" name="amount" value="">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="currency_code" value="GBP">
<input type="hidden" name="image_url" value="">
<input type="hidden" name="return" value="http://www.yourdomain/paymentsuccess.html">
<input type="hidden" name="cancel_return" value="http://www.yourdomain/whatever-page-this-form-is-on.html">
<input type="image" src="http://images.paypal.com/images/x-click-butcc.gif" border="0" name="submit" width="73" height="44">
</form>
[edited by: The_Contractor at 12:02 am (utc) on Oct. 1, 2006]