LastEMailNotificationDate Property
The LastEMailNotificationDate property contains the last email notification date.
Syntax
[dt=] SiteKiosk.Plugins("SiteCash").AccumulatedMoneyStorage.
LastEMailNotificationDate
|
Possible Values
Date value that retrieves the notification date.
|
The property is read only.
Remarks
Examples
The following example shows the last email notification date.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
var AMStorage = SiteKiosk.Plugins("SiteCash").AccumulatedMoneyStorage;
var myDTF = SiteKiosk.SiteKioskUI.CreateDateTimeFormatter();
alert(myDTF.FormatDate(AMStorage.LastEMailNotificationDate));
</SCRIPT>
|
Applies to
SiteKiosk v6.5 (and later versions).
Back to top