Stripe在StripeCustomerService()
中捕获电子邮件和名称,即使用 Stripe.dll
创建客户时...
但在管理员登录中,它会在标题中显示客户Email
,如下所示。
有没有办法将其更改为客户名称?
但是,如果我在Email参数中传递名称,则可能会影响向客户发送通知电子邮件。
那么,是否可以这样做?
注意:我已经在参数列表中传递了两个;
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;
答案 0 :(得分:0)
简答:不,这是不可能的。
John Doe的名字可能有任意数量的客户,但每个客户都会有不同的电子邮件,例如:
JDoe @ email.com,JDoe2 @email.com等
电子邮件是唯一标识符,而名称则不是。