EmailReceiptEnabled Property
The EmailReceiptEnabled property indicates if a receipt will be sent after payment.
Syntax
[bool=] SiteKiosk.Plugins("SiteCash").Devices("CreditCard").
EmailReceiptEnabled
|
Possible Values
Boolean value that indicates if a receipt will be sent.
|
The property is read only.
Remarks
Examples
The following example determines if a receipt will be sent and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
creditcard = SiteKiosk.Plugins("SiteCash").Devices("CreditCard");
alert(creditcard.EmailReceiptEnabled);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top