123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <?php
- /**
- * Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
- * Copyright (C) 2005-2011 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2012 Florian Henry <florian.henry@open-concept.pro>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /**
- * \file public/emailing/mailing-unsubscribe.php
- * \ingroup mailing
- * \brief Script use to update unsubcribe contact to prospect mailing list
- */
- if (! defined('NOLOGIN')) define("NOLOGIN",1); // This means this output page does not require to be logged.
- if (! defined('NOCSRFCHECK')) define('NOCSRFCHECK','1'); // Do not check anti CSRF attack test
- if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU','1'); // If there is no need to load and show top and left menu
- /**
- * Header empty
- *
- * @return void
- */
- function llxHeader() { }
- /**
- * Footer empty
- *
- * @return void
- */
- function llxFooter() { }
- require '../../main.inc.php';
- require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
- global $user, $conf, $langs;
- $langs->load("main");
- $langs->load("mails");
- $tag=GETPOST('tag');
- $unsuscrib=GETPOST('unsuscrib');
- $securitykey=GETPOST('securitykey');
- /*
- * Actions
- */
- dol_syslog("public/emailing/mailing-read.php : tag=".$tag." securitykey=".$securitykey, LOG_DEBUG);
- if ($securitykey != $conf->global->MAILING_EMAIL_UNSUBSCRIBE_KEY)
- {
- print 'Bad security key value.';
- exit;
- }
- if (! empty($tag) && ($unsuscrib=='1'))
- {
- //Udate status of mail in Destinaries maling list
- $statut='3';
- $sql = "UPDATE ".MAIN_DB_PREFIX."mailing_cibles SET statut=".$statut." WHERE tag='".$db->escape($tag)."'";
- dol_syslog("public/emailing/mailing-unsubscribe.php : Mail unsubcribe : ".$sql, LOG_DEBUG);
- $resql=$db->query($sql);
- //Update status communication of thirdparty prospect
- $sql = "UPDATE ".MAIN_DB_PREFIX."societe SET fk_stcomm=-1 WHERE rowid IN (SELECT source_id FROM ".MAIN_DB_PREFIX."mailing_cibles WHERE tag='".$db->escape($tag)."' AND source_type='thirdparty' AND source_id is not null)";
- dol_syslog("public/emailing/mailing-unsubscribe.php : Mail unsubcribe thirdparty : ".$sql, LOG_DEBUG);
- $resql=$db->query($sql);
- //Update status communication of contact prospect
- $sql = "UPDATE ".MAIN_DB_PREFIX."socpeople SET no_email=1 WHERE rowid IN (SELECT rowid FROM ".MAIN_DB_PREFIX."socpeople AS sc INNER JOIN ".MAIN_DB_PREFIX."mailing_cibles AS mc ON mc.tag = '".$db->escape($tag)."' AND mc.source_type = 'contact' AND mc.source_id = sc.rowid)";
- dol_syslog("public/emailing/mailing-unsubscribe.php : Mail unsubcribe contact : ".$sql, LOG_DEBUG);
- $resql=$db->query($sql);
- $sql = "SELECT mc.email";
- $sql .= " FROM ".MAIN_DB_PREFIX."mailing_cibles as mc";
- $sql .= " WHERE mc.tag='".$db->escape($tag)."'";
- $resql=$db->query($sql);
- $obj = $db->fetch_object($resql);
- header("Content-type: text/html; charset=".$conf->file->character_set_client);
- print '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">';
- print "\n";
- print "<html>\n";
- print "<head>\n";
- print '<meta name="robots" content="noindex,nofollow">'."\n";
- print '<meta name="keywords" content="dolibarr,mailing">'."\n";
- print '<meta name="description" content="Welcome on Dolibarr Mailing unsubcribe">'."\n";
- print "<title>".$langs->trans("MailUnsubcribe")."</title>\n";
- print '<link rel="stylesheet" type="text/css" href="'.DOL_URL_ROOT.$conf->css.'?lang='.$langs->defaultlang.'">'."\n";
- print '<style type="text/css">';
- print '.CTableRow1 { margin: 1px; padding: 3px; font: 12px verdana,arial; background: #e6E6eE; color: #000000; -moz-border-radius-topleft:6px; -moz-border-radius-topright:6px; -moz-border-radius-bottomleft:6px; -moz-border-radius-bottomright:6px;}';
- print '.CTableRow2 { margin: 1px; padding: 3px; font: 12px verdana,arial; background: #FFFFFF; color: #000000; -moz-border-radius-topleft:6px; -moz-border-radius-topright:6px; -moz-border-radius-bottomleft:6px; -moz-border-radius-bottomright:6px;}';
- print '</style>';
- print "</head>\n";
- print '<body style="margin: 20px;">'."\n";
- print '<table><tr><td style="text_align:center;">';
- print $langs->trans("YourMailUnsubcribeOK",$obj->email)."<br>\n";
- print '</td></tr></table>';
- print "</body>\n";
- print "</html>\n";
- }
- $db->close();
|