X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmails%2Fbonus_mails.php;h=daae83b501bc66d1860e05c3f4b165f81f30a048;hp=82a7d25e5cfdc8e78ad50b14c0e3616789d75df0;hb=f03cb5d87e69bb2efc885b5c5f5f3026b24c06f6;hpb=4001187f22197f55e5a1f211fc8defcc180f7c32 diff --git a/inc/mails/bonus_mails.php b/inc/mails/bonus_mails.php index 82a7d25e5c..daae83b501 100644 --- a/inc/mails/bonus_mails.php +++ b/inc/mails/bonus_mails.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Versendet Erinnerungsmails * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -81,10 +86,10 @@ if (!empty($sql)) { $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 - $MSG = LOAD_EMAIL_TEMPLATE("bonus_en_notify_body", "", "{PER}uid{PER}"); + $message = LOAD_EMAIL_TEMPLATE("bonus_en_notify_body", "", "{PER}uid{PER}"); $RECEIVER = ""; $UIDs = array(); // Check for accounts to be notified @@ -105,8 +110,8 @@ LIMIT 1", $UIDs[] = $content['userid']; } else { // Send normal notification mail to the members - $MSG = LOAD_EMAIL_TEMPLATE("bonus_".$MODE."_notify", array(), $content['userid']); - SEND_EMAIL($content['email'], $SUBJECT, $MSG); + $message = LOAD_EMAIL_TEMPLATE("bonus_".$MODE."_notify", array(), $content['userid']); + SEND_EMAIL($content['email'], $subject, $message); } } // END - while @@ -119,7 +124,7 @@ LIMIT 1", $URL = "modules.php?module=index&what=login"; // Insert mail - ADD_BONUS_MAIL_TO_QUEUE($SUBJECT, $MSG, $RECEIVER, getConfig('bonus_notify_points'), getConfig('bonus_notify_wait'), $URL, 0, "normal", SQL_NUMROWS($result_main)); + ADD_BONUS_MAIL_TO_QUEUE($subject, $message, $RECEIVER, getConfig('bonus_notify_points'), getConfig('bonus_notify_wait'), $URL, 0, "normal", SQL_NUMROWS($result_main)); } // END - if } // END - if