How can I use Stripe to delay charging a customer until a physical item is shipped?

前端 未结 5 1575
北海茫月
北海茫月 2021-02-03 11:47

I\'m in the process of building an online marketplace which sells shippable goods. The site will be similar to Etsy, which will connect merchants with buyers.

I\'d like

5条回答
  •  一生所求
    2021-02-03 12:21

    email;
       
       
       $customer = \Stripe\Customer::create(array(
        "source" => $token,
        "email" => $email)
    );
    
    ?>

提交回复
热议问题