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