我有一个IPN脚本,当贝宝支付到达时,会自动向发送所购买产品的下载代码。
但我忘了过滤贝宝的付款,因为这些钱还没到.下载代码被发送给某人..。事实上,从来不付钱给。
An eCheck payment from *** was declined by the sender's bank. We will
automatically try to process this payment again in 3 business days. It then
usually takes 3-5 days for the money to be deposited into your account. Please
do not ship items until you receive payment.
这一次我输了(产品寄来了,但我永远也拿不到钱),但下次:
如何使用Paypal ?过滤此类延迟支付
发布于 2014-10-02 19:29:03
我在IPN脚本中添加了以下代码:
if (!($payment_status === 'Completed'))
{
return;
}
这将防止在状态不是Completed
的情况下发送我的产品的“下载代码”。我希望它能起作用,并过滤Pending
付款.
https://stackoverflow.com/questions/26165222
复制相似问题