29if (!defined(
'NOLOGIN')) {
30 define(
'NOLOGIN',
'1');
32if (!defined(
'NOCSRFCHECK')) {
33 define(
'NOCSRFCHECK',
'1');
35if (!defined(
'NOBROWSERNOTIF')) {
36 define(
'NOBROWSERNOTIF',
'1');
38if (!defined(
'NOREQUIRETRAN')) {
39 define(
'NOREQUIRETRAN',
'1');
41if (!defined(
'NOTOKENRENEWAL')) {
42 define(
'NOTOKENRENEWAL',
'1');
44if (!defined(
'NOREQUIREMENU')) {
45 define(
'NOREQUIREMENU',
'1');
47if (!defined(
'NOIPCHECK')) {
48 define(
'NOIPCHECK',
'1');
50if (!defined(
'NOSESSION')) {
51 define(
'NOSESSION',
'1');
74function llxHeader($head =
'', $title =
'', $help_url =
'', $target =
'', $disablejs = 0, $disablehead = 0, $arrayofjs =
'', $arrayofcss =
'', $morequerystring =
'', $morecssonbody =
'', $replacemainareaby =
'', $disablenofollow = 0, $disablenoindex = 0)
87function llxFooter($comment =
'', $zone =
'private', $disabledoutputofmessages = 0)
93require
'../../main.inc.php';
100$securitykey =
GETPOST(
'securitykey');
107dol_syslog(
"public/emailing/mailing-read.php : tag=".$tag.
" securitykey=".$securitykey, LOG_DEBUG);
110 print
'Bad security key value.';
114if (!empty($tag) && $tag !=
'undefined') {
115 dol_syslog(
"public/emailing/mailing-read.php : Update status of email target and thirdparty for tag ".$tag, LOG_DEBUG);
117 $sql =
"SELECT mc.rowid, mc.email, mc.statut, mc.source_type, mc.source_id, m.entity";
118 $sql .=
" FROM ".MAIN_DB_PREFIX.
"mailing_cibles as mc, ".MAIN_DB_PREFIX.
"mailing as m";
119 $sql .=
" WHERE mc.fk_mailing = m.rowid AND mc.tag = '".$db->escape($tag).
"'";
121 $resql = $db->query($sql);
126 $obj = $db->fetch_object($resql);
129 print
'Email target not valid. Operation canceled.';
132 if (empty($obj->email)) {
133 print
'Email target not valid. Operation canceled.';
136 if ($obj->statut == 2 || $obj->statut == 3) {
137 print
'Email target already set to read or unsubscribe. Operation canceled.';
151 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"mailing_cibles SET statut=".((int) $statut).
" WHERE rowid = ".((int) $obj->rowid);
152 $resql = $db->query($sql);
158 if ($obj->source_id > 0 && $obj->source_type ==
'thirdparty' && $obj->entity) {
159 $sql =
"UPDATE ".MAIN_DB_PREFIX.
'societe SET fk_stcomm = 3 WHERE fk_stcomm <> -1 AND entity = '.((int) $obj->entity).
' AND rowid = '.((int) $obj->source_id);
160 $resql = $db->query($sql);
164 if ($obj->source_id > 0 && $obj->source_type ==
'contact' && $obj->entity) {
165 $sql =
"UPDATE ".MAIN_DB_PREFIX.
'societe SET fk_stcomm = 3 WHERE fk_stcomm <> -1 AND entity = '.((int) $obj->entity).
' AND rowid IN (SELECT sc.fk_soc FROM '.MAIN_DB_PREFIX.
'socpeople AS sc WHERE sc.rowid = '.((int) $obj->source_id).
')';
166 $resql = $db->query($sql);
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Footer empty.
if(!defined('NOLOGIN')) if(!defined( 'NOCSRFCHECK')) if(!defined('NOBROWSERNOTIF')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOIPCHECK')) if(!defined( 'NOSESSION')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Header empty.
dol_hash($chain, $type='0', $nosalt=0)
Returns a hash (non reversible encryption) of a string.