【问题标题】:Stripe: Show Customer Name on place of Email条纹:在电子邮件位置显示客户名称
【发布时间】:2017-02-23 13:11:14
【问题描述】:

Stripe 捕获 StripeCustomerService() 中的电子邮件和姓名,即使用 Stripe.dll...

创建客户时

但在Admin登录时,标题中显示CustomerEmail,如下图。

有没有办法将其更改为客户名称?

但如果我在电子邮件参数中传递名称,可能会影响向客户发送通知电子邮件。

那么,有可能吗?

注意:我在参数列表中都通过了;

var mycust = new StripeCustomerCreateOptions();

//Save Card Details
mycust.CardNumber = txtCard.Text;
mycust.CardExpirationMonth = ddlMonth.SelectedValue;
mycust.CardExpirationYear = ddlYear.SelectedValue;
mycust.CardCvc = txtCSV.Text;

//Save Customer Details
mycust.Email = email;
mycust.CardName = fullName;

【问题讨论】:

    标签: stripe-payments stripe.net


    【解决方案1】:

    简短回答:不,不可能。

    可能有任意数量的客户以 John Doe 的名义,但每个客户都有不同的电子邮件,例如:

    JDoe@email.com、JDoe2@email.com 等

    电子邮件是唯一标识符,而名称不是。

    【讨论】:

    • Email is a unique identifier - 该语句不适用于 Stripe。客户 ID 即 cus_9MTZn... 是唯一的。您可以拥有多个具有相同电子邮件 ID 的不同客户。
    猜你喜欢
    • 2019-08-11
    • 2015-06-16
    • 1970-01-01
    • 1970-01-01
    • 2018-07-04
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2016-12-25
    相关资源
    最近更新 更多