]> git.mxchange.org Git - mailer.git/blobdiff - inc/mails/bonus_mails.php
Notification mails rewritten
[mailer.git] / inc / mails / bonus_mails.php
index 0e4e19224b722e24422418f9b275fa55a9b3fbad..ee2e1b7b578d5b393eb7cf62db5361d69ca83ee7 100644 (file)
@@ -107,32 +107,24 @@ SET bonus_ral_notify='%s', bonus_ral_%s_notify='%s' WHERE userid=%s LIMIT 1",
                                $MSG = LOAD_EMAIL_TEMPLATE("bonus_".$MODE."_notify", array(), $uid);
                                SEND_EMAIL($uid, $SUBJECT, $MSG);
                        }
                                $MSG = LOAD_EMAIL_TEMPLATE("bonus_".$MODE."_notify", array(), $uid);
                                SEND_EMAIL($uid, $SUBJECT, $MSG);
                        }
-               } // END - if
+               } // END - while
 
                // Shall I send out bonus mails?
                if ($MAIL_MODE) {
                        // Okay, make array to string
                        $RECEIVER = implode(";", $UIDs);
 
                // Shall I send out bonus mails?
                if ($MAIL_MODE) {
                        // Okay, make array to string
                        $RECEIVER = implode(";", $UIDs);
-                       $result = SQL_QUERY_ESC("INSERT INTO "._MYSQL_PREFIX."_bonus
-(subject, text, receivers, points, time, data_type, timestamp, url, cat_id, target_send, mails_sent, is_notify)
-VALUES ('%s','%s','%s','%s','%s','NEW', UNIX_TIMESTAMP(), '%s','%s','%s','%s','Y')",
- array(
-       $SUBJECT,
-       $MSG,
-       $RECEIVER,
-       $_CONFIG['bonus_notify_points'],
-       $_CONFIG['bonus_notify_wait'],
-       URL."/modules.php?module=index&what=login",
-       0,
-       SELECTION_COUNT(explode(";", $RECEIVER)),
-       SQL_NUMROWS($result_main),
-), __FILE__, __LINE__);
-               }
-       }
+
+                       // Prepare URL
+                       $url = URL."/modules.php?module=index&what=login";
+
+                       // Insert mail
+                       ADD_BONUS_MAIL_TO_QUEUE($SUBJECT, $MSG, $RECEIVER, $_CONFIG['bonus_notify_points'], $_CONFIG['bonus_notify_wait'], $url, 0, "normal", SQL_NUMROWS($result_main));
+               } // END - if
+       } // END - if
 
        // Free memory
        SQL_FREERESULT($result_main);
 
        // Free memory
        SQL_FREERESULT($result_main);
-}
+} // END - if
 
 //
 ?>
 
 //
 ?>