VNOG#87525 Vraag over CC/BCC in Facilitor-mails

svn path=/Database/trunk/; revision=70841
This commit is contained in:
Erik Groener
2025-11-06 10:12:54 +00:00
parent d5056820af
commit 2362bed630
4 changed files with 18 additions and 5 deletions

View File

@@ -4334,6 +4334,8 @@ FAC_LCL('lcl_noti_popup', 'Pop-up', 'Pop-up')
FAC_LCL('lcl_noti_send', 'Versturen', 'Send')
FAC_LCL('lcl_noti_sendbymail', 'Stuur via e-mail', 'Send by e-mail')
FAC_LCL('lcl_noti_sendto', 'Stuur naar', 'Send to')
FAC_LCL('lcl_noti_sendto_cc', 'Stuur naar CC', 'Send to')
FAC_LCL('lcl_noti_sendto_bcc', 'Stuur naar BCC', 'Send to')
FAC_LCL('lcl_noti_sendsubject', 'Onderwerp', 'Subject')
FAC_LCL('lcl_noti_prsvoorkeur', 'Configureerbare notificaties', 'Configurable notifications')
FAC_LCL('lcl_no_noti_prsvoorkeur', 'Standaard configuratie - geen specifieke wijzigingen', 'Default configuration - no overrules')

View File

@@ -122,7 +122,7 @@ CREATE OR REPLACE PACKAGE fac
poptmessage VARCHAR2, poptstatus NUMBER, poptemail VARCHAR2, poptmobile VARCHAR2, pxref NUMBER,
pprio NUMBER, psender VARCHAR2, pattach VARCHAR2 DEFAULT NULL,
pbedrijfadreskey NUMBER DEFAULT NULL, pqueue VARCHAR2 DEFAULT 'DEFAULT',
pgeturl VARCHAR2 DEFAULT NULL);
pgeturl VARCHAR2 DEFAULT NULL, pcc VARCHAR2 DEFAULT NULL, pbcc VARCHAR2 DEFAULT NULL);
PROCEDURE clrnotifications (pcode VARCHAR2, pref NUMBER, pxref NUMBER DEFAULT NULL, puitz VARCHAR2 DEFAULT NULL, puitz2 VARCHAR2 DEFAULT NULL);
PROCEDURE clrnotifications (pcode VARCHAR2, pref NUMBER, psubject VARCHAR2, preceiver NUMBER, pextrakey NUMBER);
PROCEDURE clrnotifications_xmlnode (pxmlnode VARCHAR2, prefkey NUMBER);
@@ -2296,8 +2296,10 @@ CREATE OR REPLACE PACKAGE BODY fac AS
psender VARCHAR2,
pattach VARCHAR2 DEFAULT NULL,
pbedrijfadreskey NUMBER DEFAULT NULL,
pqueue VARCHAR2 DEFAULT 'DEFAULT',
pgeturl VARCHAR2 DEFAULT NULL)
pqueue VARCHAR2 DEFAULT 'DEFAULT',
pgeturl VARCHAR2 DEFAULT NULL,
pcc VARCHAR2 DEFAULT NULL,
pbcc VARCHAR2 DEFAULT NULL)
AS
soms fac_srtnotificatie.fac_srtnotificatie_oms%TYPE;
smode fac_srtnotificatie.fac_srtnotificatie_mode%TYPE;
@@ -2644,7 +2646,9 @@ CREATE OR REPLACE PACKAGE BODY fac AS
prs_bedrijfadres_key,
fac_notificatie_queue,
fac_notificatie_geturl,
fac_notificatie_notbefore)
fac_notificatie_notbefore,
fac_notificatie_email_cc,
fac_notificatie_email_bcc)
VALUES (skey,
lmode,
pfrom,
@@ -2662,7 +2666,10 @@ CREATE OR REPLACE PACKAGE BODY fac AS
pbedrijfadreskey,
pqueue,
pgeturl,
SYSDATE + NVL(l_srtnoti_delay/ 60/ 60/ 24, 0));
SYSDATE + NVL(l_srtnoti_delay/ 60/ 60/ 24, 0),
pcc,
pbcc
);
END IF;
END;

View File

@@ -198,6 +198,7 @@ DEFINE_SETTING('FAC', 0001, 'WEB_PRSSYS', 'fontawesomestyle'
DEFINE_SETTING('FAC', 0001, 'WEB_FACTAB', 'custfunctionspath' , 'string' , NULL , 'path to custfunctions.wsc')
DEFINE_SETTING('FAC', 0001, 'WEB_FACTAB', 'email_regexp' , 'string' , '^\s*[A-Z0-9&\._%+-]+@[A-Z0-9\.-]+\.[A-Z]{2,}\s*([,;]\s*[A-Z0-9&\._%+-]+@[A-Z0-9\.-]+\.[A-Z]{2,}\s*)*$', 'Meerdere gescheiden door , of ;')
DEFINE_SETTING('FAC', 0001, 'WEB_FACTAB', 'email_regexp_single' , 'string' , '^\s*[A-Z0-9&\._%+-]+@[A-Z0-9\.-]+\.[A-Z]{2,}\s*$', 'E n email adres')
DEFINE_SETTING('FAC', 0001, 'WEB_PRSSYS', 'email_cc_allowed' , 'number' , '0' , 'Allow use of Cc and Bcc {0 | 1} in sending email')
DEFINE_SETTING('FAC', 0001, 'WEB_FACTAB', 'fac_accept_terms' , 'number' , '0' , '0 (default) no accept, 1=must accept L("lcl_terms_filename")')
DEFINE_SETTING('FAC', 0001, 'WEB_FACTAB', 'fac_emailtoken_auth_expire' , 'number' , '0' , 'Minutes e-mail login token is valid (default 0)')
DEFINE_SETTING('FAC', 0001, 'WEB_FACTAB', 'fac_logo_file' , 'string' , 'tmpl_logo.gif' , 'Customer logo file (Future use)')

View File

@@ -21,6 +21,9 @@ ALTER TABLE alg_terreinsector
ADD mld_dienstniveau_key NUMBER(10)
REFERENCES mld_dienstniveau(mld_dienstniveau_key) ON DELETE SET NULL;
/////////////////////////////////////////////////////////////////////////////////////////// VNOG#87525
DEFINE_SETTING('FAC', 0001, 'WEB_PRSSYS', 'email_cc_allowed', 'number', '0', 'Allow use of Cc and Bcc {0 | 1} in sending email');
/////////////////////////////////////////////////////////////////////////////////////////// FCLT#00000
REGISTERONCE('$Id$')