email format

This commit is contained in:
CHIEFSOFT\ameye
2024-02-03 13:28:50 -05:00
parent 179d1655ff
commit bf687647b5
2 changed files with 28 additions and 31 deletions
+7 -1
View File
@@ -25,6 +25,7 @@ long PastDueWarings(CVars in, CVars &out);
long PastDueOffersRefund(CVars in, CVars &out);
long NotificationSystem(CVars in, CVars &out);
long CronTracker(CVars in, CVars &out);
long SendMoneyPending(CVars in, CVars &out);
/*
CREATE TABLE cron_jobs (
id SERIAL,
@@ -102,7 +103,7 @@ long sitecrons_calls(CVars in, CVars &out) {
ct["job_type"]="WRB_CRONJOB_PENDINGSM"; ct["job_type"].set_valid( true );
ct["description"]="Alert Pending Transfers "; ct["description"].set_valid( true );
CronTracker(ct, co);
return 0; //NotificationSystem(in, out);
return SendMoneyPending(in, out);
break;
case WRB_CRONJOB_GROUPJOBS:
@@ -118,6 +119,11 @@ long sitecrons_calls(CVars in, CVars &out) {
return ret;
}
long SendMoneyPending(CVars in, CVars &out){
return 0;
}
long NotificationSystem(CVars in, CVars &out){
long ret = 0;
//const PGresult *res;