9363f83e573729b33707486f5541b0000498026f
[mailer.git] / inc / mails / beg_mails.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 11/22/2005 *
4  * ===============                              Last change: 11/22/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : beg_mails.php                                    *
8  * -------------------------------------------------------------------- *
9  * Short description : Sends out reminder mails                         *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Versendet Erinnerungsmails                       *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40  elseif ((!EXT_IS_ACTIVE("beg")) && (!IS_ADMIN()))
41 {
42         ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "beg");
43         return;
44 }
45
46 // Do not execute when script is in CSS mode
47 if ($CSS == 1) return;
48
49 // Create timemark from saved month
50 $mark = mktime(0, 0, 0, $CONFIG['beg_month'], date("d", time()), date('Y', time()));
51 $SQL = ""; $MODE = "";
52
53 // Shall I sent activation or deactivation mail?
54 $SQL = "SELECT userid, email FROM "._MYSQL_PREFIX."_user_data WHERE (beg_ral_notify ";
55 switch ($CONFIG['beg_rallye'])
56 {
57 case 'Y': // Begging rallye is activated
58         if ($CONFIG['beg_ral_en_notify'] == 'Y')
59         {
60                 // Okay, let's check for member accounts
61                 $SQL .= "= 0 OR (beg_ral_notify > 0 AND beg_ral_en_notify < beg_ral_di_notify)";
62                 $MODE = "en";
63         }
64          else
65         {
66                 // Do not notify!
67                 $SQL = "";
68         }
69         break;
70
71 case 'N': // Begging rallye is deactivated
72         if ($CONFIG['beg_ral_di_notify'] == 'Y')
73         {
74                 // Okay, let's check for member accounts
75                 $SQL .= " > 0 AND beg_ral_di_notify < beg_ral_en_notify";
76                 $MODE = "di";
77         }
78          else
79         {
80                 // Do not notify!
81                 $SQL = "";
82         }
83         break;
84 }
85
86 if (!empty($SQL))
87 {
88         // The SQL command needs to be finisched here (only confirmed accounts!)
89         $SQL .= ") AND status='CONFIRMED' ORDER BY last_online ASC";
90
91         // Prepare data for the template
92         define('__BEG_MIN_POINTS' , TRANSLATE_COMMA($CONFIG['beg_points']));
93         define('__BEG_MAX_POINTS' , TRANSLATE_COMMA($CONFIG['beg_points_max']));
94         define('__BEG_MAX_WINNERS', round($CONFIG['beg_ranks']));
95         if ($CONFIG['beg_ip_timeout'] == 0)
96         {
97                 // No IP locking setuped!
98                 define('__BEG_IP_LOCKER', BEG_NO_LIMITATION);
99         }
100          else
101         {
102                 // Create timemark
103                 define('__BEG_IP_LOCKER', CREATE_FANCY_TIME($CONFIG['beg_ip_timeout']));
104         }
105
106         // Check for accounts to be notified
107         $result_main = SQL_QUERY($SQL, __FILE__, __LINE__);
108         if (SQL_NUMROWS($result_main) > 0)
109         {
110                 // Normal notification mails or bonus mails?
111                 $MAIL_MODE = (($CONFIG['beg_notify_bonus'] > 0) && ($MODE == "en") && (EXT_IS_ACTIVE("bonus")));
112
113                 // Generate subject line
114                 $eval = "\$SUBJECT = BEG_RALLYE_".strtoupper($MODE)."_NOTIFY;";
115                 eval($eval);
116
117                 // Load message body for bonus mails
118                 $MSG = LOAD_EMAIL_TEMPLATE("beg_en_notify_body", "", "{PER}uid{PER}");
119                 $RECEIVER = ""; $UIDs = array();
120
121                 // Okay lets notify all users!
122                 while(list($uid, $email) = SQL_FETCHROW($result_main))
123                 {
124                         // Update account
125                         $result_update = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data
126 SET beg_ral_notify='%s', beg_ral_%s_notify='%s' WHERE userid=%d LIMIT 1",
127  array(time(), $MODE, time(), $uid), __FILE__, __LINE__);
128
129                         // Load email template and send it to the user!
130                         if ($MAIL_MODE)
131                         {
132                                 // Add userid to queue
133                                 $UIDs[] = $uid;
134                         }
135                          else
136                         {
137                                 // Send normal notification mail to the members
138                                 $MSG = LOAD_EMAIL_TEMPLATE("beg_".$MODE."_notify", "", $uid);
139                                 SEND_EMAIL($email, $SUBJECT, $MSG);
140                         }
141                 }
142
143                 // Shall I send out bonus mails?
144                 if ($MAIL_MODE)
145                 {
146                         // Okay, make array to string
147                         $RECEIVER = implode(";", $UIDs);
148                         $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_bonus
149 (subject, text, receivers, points, time, data_type, timestamp, url, cat_id, target_send, mails_sent, is_notify)
150 VALUES ('%s', '%s', '%s', '%s', '%s', 'NEW', UNIX_TIMESTAMP(), '%s', '%s', '%s', '%s', 'Y')",
151  array(
152         $SUBJECT,
153         $MSG,
154         $RECEIVER,
155         $CONFIG['beg_notify_bonus'],
156         $CONFIG['beg_notify_wait'],
157         URL."/modules.php?module=index&what=login",
158         0,
159         SELECTION_COUNT(explode(";", $RECEIVER)),
160         SQL_NUMROWS($result_main),
161 ), __FILE__, __LINE__);
162                 }
163         }
164
165         // Free memory
166         SQL_FREERESULT($result_main);
167 }
168
169 //
170 ?>