X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmails%2Fbonus_mails.php;h=ee2e1b7b578d5b393eb7cf62db5361d69ca83ee7;hp=0e4e19224b722e24422418f9b275fa55a9b3fbad;hb=bfe24b8d5abcc23e3330580c3ffbeab93166b29b;hpb=1090de8d4e7bf659002468fec8571388e7487a00 diff --git a/inc/mails/bonus_mails.php b/inc/mails/bonus_mails.php index 0e4e19224b..ee2e1b7b57 100644 --- a/inc/mails/bonus_mails.php +++ b/inc/mails/bonus_mails.php @@ -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); } - } // END - if + } // END - while // 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); -} +} // END - if // ?>