]> git.mxchange.org Git - mailer.git/blobdiff - inc/mails/bonus_mails.php
Renamed
[mailer.git] / inc / mails / bonus_mails.php
index 041fd602f89d3a493e073d92fa4ba43867d36f3e..b6b4d8102a47e1f37ab3509448cbde310bbdbc64 100644 (file)
@@ -48,8 +48,8 @@ if (!defined('__SECURITY')) {
 if ($GLOBALS['output_mode'] == 1) return;
 
 // Create timemark from saved month
-$mark = mktime(0, 0, 0, getConfig('last_month'), date("d", time()), date('Y', time()));
-$sql = ''; $MODE = '';
+$mark = mktime(0, 0, 0, getConfig('last_month'), date('d', time()), date('Y', time()));
+$sql = ''; $mode = '';
 
 // Shall I sent activation or deactivation mail?
 $sql = "SELECT userid, email FROM `{!_MYSQL_PREFIX!}_user_data` WHERE (bonus_ral_notify ";
@@ -59,7 +59,7 @@ case 'Y': // Active rallye is activated
        if (getConfig('bonus_en_notify') == 'Y') {
                // Okay, let's check for member accounts
                $sql .= "= 0 OR (bonus_ral_notify > 0 AND bonus_ral_en_notify < bonus_ral_di_notify)";
-               $MODE = "en";
+               $mode = "en";
        } else {
                // Do not notify!
                $sql = '';
@@ -70,7 +70,7 @@ case 'N': // Active rallye is deactivated
        if (getConfig('bonus_di_notify') == 'Y') {
                // Okay, let's check for member accounts
                $sql .= " > 0 AND bonus_ral_di_notify < bonus_ral_en_notify";
-               $MODE = "di";
+               $mode = "di";
        } else {
                // Do not notify!
                $sql = '';
@@ -83,10 +83,10 @@ if (!empty($sql)) {
        $sql .= ") AND `status`='CONFIRMED' ORDER BY last_online ASC";
 
        // Normal notification mails or bonus mails?
-       $sentBonusMails = ((getConfig('bonus_notify_points') > 0) && ($MODE == "en") && (EXT_IS_ACTIVE('bonus')));
+       $sentBonusMails = ((getConfig('bonus_notify_points') > 0) && ($mode == "en") && (EXT_IS_ACTIVE('bonus')));
 
        // Generate subject line
-       $subject = constant('BONUS_RALLYE_'.strtoupper($MODE).'_NOTIFY');
+       $subject = constant('BONUS_RALLYE_'.strtoupper($mode).'_NOTIFY');
 
        // Load message body for bonus mails
        $message = LOAD_EMAIL_TEMPLATE('bonus_en_notify_body', '', '{PER}uid{PER}');
@@ -102,7 +102,7 @@ if (!empty($sql)) {
 SET bonus_ral_notify='%s', bonus_ral_%s_notify='%s'
 WHERE userid=%s
 LIMIT 1",
-                               array(time(), $MODE, time(), $content['userid']), __FILE__, __LINE__);
+                               array(time(), $mode, time(), $content['userid']), __FILE__, __LINE__);
 
                        // Load email template and send it to the user!
                        if ($sentBonusMails === true) {
@@ -110,8 +110,8 @@ LIMIT 1",
                                $UIDs[] = $content['userid'];
                        } else {
                                // Send normal notification mail to the members
-                               $message = LOAD_EMAIL_TEMPLATE('bonus_' . $MODE . '_notify', array(), $content['userid']);
-                               SEND_EMAIL($content['email'], $subject, $message);
+                               $message = LOAD_EMAIL_TEMPLATE('bonus_' . $mode . '_notify', array(), $content['userid']);
+                               sendEmail($content['email'], $subject, $message);
                        }
                } // END - while
 
@@ -124,7 +124,7 @@ LIMIT 1",
                        $URL = 'modules.php?module=index&amp;what=login';
 
                        // Insert mail
-                       ADD_BONUS_MAIL_TO_QUEUE($subject, $message, $RECEIVER, getConfig('bonus_notify_points'), getConfig('bonus_notify_wait'), $URL, 0, 'normal', SQL_NUMROWS($result_main));
+                       addBonusMailToQueue($subject, $message, $RECEIVER, getConfig('bonus_notify_points'), getConfig('bonus_notify_wait'), $URL, 0, 'normal', SQL_NUMROWS($result_main));
                } // END - if
        } // END - if