c67e0ee25ee324c718f1a875fac2129aa0fb0c47
[mailer.git] / inc / mails / birthday_mails.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 05/23/2004 *
4  * ===============                              Last change: 11/22/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : birthday_mails.php                               *
8  * -------------------------------------------------------------------- *
9  * Short description : Sends out birthday mails                         *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Versendet Geburtstagsmails                       *
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 (!defined('__SECURITY')) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 } elseif (!EXT_IS_ACTIVE("birthday")) {
39         return;
40 }
41
42 // Do not execute when script is in CSS mode
43 if (($GLOBALS['output_mode'] == 1) || (!defined('__DAILY_RESET'))) return;
44
45 // Get current day (01 to 31), month (01 to 12) and year (4-digits year)
46 $DAY   = date("d", time());
47 $MONTH = date("m", time());
48 $YEAR  = date('Y', time());
49
50 // Shall I include only active members?
51 $ADD = "%s"; $VALUE = "";
52 if ((getConfig('birthday_active')) && (EXT_IS_ACTIVE("autopurge")) && (getConfig('autopurge_inactive') == "Y") && (getConfig('ap_inactive_since') > 0)) {
53         $ADD = " AND last_online >= (UNIX_TIMESTAP() - %s)";
54         $VALUE = getConfig('ap_inactive_since');
55 }
56
57 // Only confirmed members shall receive birthday mails...
58 $result_birthday = SQL_QUERY_ESC("SELECT userid, email, birth_year
59 FROM `{!_MYSQL_PREFIX!}_user_data`
60 WHERE `status`='CONFIRMED' AND birth_day=%s AND birth_month=%s AND birthday_sent < (UNIX_TIMESTAMP() - ".(getConfig('one_day') * 364).")".$ADD."
61 ORDER BY userid",
62  array($DAY, $MONTH, $VALUE), __FILE__, __LINE__);
63
64 if (SQL_NUMROWS($result_birthday) > 0) {
65         // Start sending out birthday mails
66         while (list($uid, $email, $byear) = SQL_FETCHROW($result_birthday)) {
67                 // Calculate own timestamp for birthday and today
68                 $BD  = $byear + 12 * $MONTH + 365 * $DAY;
69                 $NOW = $YEAR  + 12 * $MONTH + 365 * $DAY;
70
71                 // Simply subtract both values and you got the age... :)
72                 $AGE = $NOW - $BD;
73
74                 if (getConfig('birthday_points') > 0) {
75                         // Prepare array for loading template
76                         $content = array(
77                                 'age'    => $AGE,
78                                 'points' => TRANSLATE_COMMA(getConfig('birthday_points')),
79                                 'check'  => "",
80                         );
81
82                         for ($idx = 0; $idx < 4; $idx++) {
83                                 $content['check'] .= generateRandomCodde("8", mt_rand(0, "$MONTH$DAY"), $uid, ($AGE*($idx+1)));
84                         }
85
86                         // Insert row into database
87                         SQL_QUERY_ESC("INSERT INTO `{!_MYSQL_PREFIX!}_user_birthday` (userid, points, chk_value) VALUES ('%s','%s','%s' )",
88                                 array(bigintval($uid), getConfig('birthday_points'), $content['check']), __FILE__, __LINE__);
89
90                         // Load email template with confirmation link
91                         $msg = LOAD_EMAIL_TEMPLATE("member_birthday_confirm", $content, bigintval($uid));
92                 } else {
93                         // Load default email template and fill in the age
94                         $msg = LOAD_EMAIL_TEMPLATE("member_birthday", $AGE, $uid);
95                 }
96
97                 // Send email
98                 SEND_EMAIL($uid, HAPPY_BIRTHDAY, $msg);
99
100                 // Remember him that he has received a birthday mail
101                 SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET birthday_sent=UNIX_TIMESTAMP() WHERE userid=%s LIMIT 1",
102                         array(bigintval($uid)), __FILE__, __LINE__);
103         }
104
105         // Free memory
106         SQL_FREERESULT($result);
107 }
108
109 //
110 ?>