CustomerEmail Property
The CustomerEmail property contains the customer email.
Syntax
[str=] SiteKiosk.Plugins("SiteCash").Devices("CreditCard").
CreateCardInfo().CustomerEmail
|
Possible Values
String that specifies or retrieves the customer email address.
|
The property is read/write.
Remarks
Examples
The following example shows the customer email address in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
creditcard = SiteKiosk.Plugins("SiteCash").Devices("CreditCard");
ccardinfo = creditcard.CreateCardInfo();
alert(ccardinfo.CustomerEmail);
</SCRIPT>
|
Applies to
SiteKiosk v7.0 (and later versions).
Back to top