2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 11/22/2005 *
4 * =================== Last change: 11/22/2005 *
6 * -------------------------------------------------------------------- *
7 * File : beg_mails.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Sends out reminder mails *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Versendet Erinnerungsmails *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009 - 2011 by Mailer Developer Team *
20 * For more information visit: http://mxchange.org *
22 * This program is free software; you can redistribute it and/or modify *
23 * it under the terms of the GNU General Public License as published by *
24 * the Free Software Foundation; either version 2 of the License, or *
25 * (at your option) any later version. *
27 * This program is distributed in the hope that it will be useful, *
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
30 * GNU General Public License for more details. *
32 * You should have received a copy of the GNU General Public License *
33 * along with this program; if not, write to the Free Software *
34 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
36 ************************************************************************/
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
41 } elseif ((!isExtensionActive('beg')) || (isExtensionInstalledAndOlder('beg', '0.2.8'))) {
45 // Do not execute when script is in CSS mode
46 if (!isHtmlOutputMode()) return;
48 // Create timemark from saved month
49 $mark = mktime(0, 0, 0, getLastMonth(), getDay(), getYear());
50 $sql = ''; $mode = '';
52 // Shall I sent activation or deactivation mail?
53 $sql = "SELECT `userid`,`email` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE (`beg_rallye_enable_notify` ";
54 switch (getBegRallye()) {
55 case 'Y': // Begging rallye is activated
56 if (isBegRallyeEnableNotifyEnabled()) {
57 // Okay, let's check for member accounts
58 $sql .= '= 0 OR (`beg_rallye_enable_notify` > 0 AND `beg_rallye_enable_notify` < `beg_rallye_disable_notify`)';
66 case 'N': // Begging rallye is deactivated
67 if (isBegRallyeDisableNotifyEnabled()) {
68 // Okay, let's check for member accounts
69 $sql .= ' > 0 AND `beg_rallye_disable_notify` < `beg_rallye_enable_notify`';
79 // The SQL command needs to be finisched here (only confirmed accounts!)
80 $sql .= ") AND `status`='CONFIRMED' ORDER BY `last_online` ASC";
82 // No IP locking setuped by default
83 $content['ip_locker'] = '{--BEG_NO_LIMITATION--}';
85 if (getBegIpTimeout() > 0) {
87 $content['ip_locker'] = '{%config,createFancyTime=beg_ip_timeout%}';
90 // Check for accounts to be notified
91 $result_main = SQL_QUERY($sql, __FILE__, __LINE__);
92 if (!SQL_HASZERONUMS($result_main)) {
93 // Normal notification mails or bonus mails?
94 $sentBonusMails = ((getBegNotifyBonus() > 0) && ($mode == 'enable') && (isExtensionActive('bonus')));
96 // Load message body for bonus mails
97 $message = loadEmailTemplate('beg_enable_notify_body', '', '{PER}userid{PER}');
98 $receiver = ''; $userids = array();
100 // Okay lets notify all users!
101 while ($row = SQL_FETCHARRAY($result_main)) {
103 $content = merge_array($content, $row);
106 SQL_QUERY_ESC("UPDATE
107 `{?_MYSQL_PREFIX?}_user_data`
109 `beg_rallye_%s_notify`=UNIX_TIMESTAMP()
116 ), __FILE__, __LINE__);
118 // Load email template and send it to the user!
119 if ($sentBonusMails === true) {
120 // Add userid to queue
121 $userids[] = $content['userid'];
123 // Send normal notification mail to the members
124 $message = loadEmailTemplate('beg_' . $mode . '_notify', $content, $content['userid']);
125 sendEmail($content['userid'], '{--BEG_RALLYE_' . strtoupper($mode) . '_SUBJECT--}', $message);
129 // Shall I send out bonus mails?
130 if ($sentBonusMails === true) {
131 // Okay, make array to string
132 $receiver = implode(';', $userids);
135 $url = 'modules.php?module=index&what=login';
138 addBonusMailToQueue('{--BEG_RALLYE_' . strtoupper($mode) . '_SUBJECT--}', $message, $receiver, getBegNotifyBonus(), getBegNotifyWait(), $url, 0, 'normal', SQL_NUMROWS($result_main));
143 SQL_FREERESULT($result_main);