Stripe:在电子邮件位置显示客户姓名
Stripe: Show Customer Name on place of Email
Stripe 在 StripeCustomerService()
中捕获电子邮件和姓名,即在使用 Stripe.dll
...
创建客户时
但在管理员登录中,标题中显示客户Email
,如下所示。
有什么办法可以改成客户姓名吗?
但是如果我在Email参数中传入name,可能会影响给客户发送通知邮件。
那么,可以这样做吗?
注意:我已经在参数列表中传递了两个;
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;
简短回答:不,不可能。
可能有任意数量的名为 John Doe 的客户,但每个客户都有不同的电子邮件,例如:
JDoe@email.com、JDoe2@email.com 等
电子邮件是唯一标识符,而姓名不是。
Stripe 在 StripeCustomerService()
中捕获电子邮件和姓名,即在使用 Stripe.dll
...
但在管理员登录中,标题中显示客户Email
,如下所示。
有什么办法可以改成客户姓名吗?
但是如果我在Email参数中传入name,可能会影响给客户发送通知邮件。
那么,可以这样做吗?
注意:我已经在参数列表中传递了两个;
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;
简短回答:不,不可能。
可能有任意数量的名为 John Doe 的客户,但每个客户都有不同的电子邮件,例如:
JDoe@email.com、JDoe2@email.com 等
电子邮件是唯一标识符,而姓名不是。