X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-send_newsletter.php;h=cbafde7b701b6df41167397b46757c19498e8ef5;hb=854fcac4ae5fe26e28e9d4d7b8361f2ab455aeb1;hp=3ad19859d797c08be5b8ea751d4014c219ce19f4;hpb=cca98f57dff720b174d21d071cee8303462485d7;p=mailer.git diff --git a/inc/modules/admin/what-send_newsletter.php b/inc/modules/admin/what-send_newsletter.php index 3ad19859d7..cbafde7b70 100644 --- a/inc/modules/admin/what-send_newsletter.php +++ b/inc/modules/admin/what-send_newsletter.php @@ -10,9 +10,14 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Verwalten von HTML- oder Text-Newslettern * * -------------------------------------------------------------------- * - * * + * $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 * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -32,61 +37,64 @@ ************************************************************************/ // Some security stuff... -if ((!defined('__SECURITY')) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; - require($INC); -} +if ((!defined('__SECURITY')) || (!isAdmin())) { + die(); +} // END - if // Add description as navigation point -ADD_DESCR("admin", __FILE__); +addMenuDescription('admin', __FILE__); -if (isset($_POST['ok'])) { - $result = SQL_QUERY("SELECT userid, email -FROM `{!MYSQL_PREFIX!}_user_data` -WHERE status='CONFIRMED' AND nl_receive='Y' -ORDER BY userid ASC", __FILE__, __LINE__); +if (isFormSent()) { + $result = SQL_QUERY("SELECT + `userid`, `email` +FROM + `{?_MYSQL_PREFIX?}_user_data` +WHERE + `status`='CONFIRMED' AND `nl_receive`='Y' +ORDER BY + `userid` ASC", __FILE__, __LINE__); if (SQL_NUMROWS($result) > 0) { // Members are available so we can send out the newsletter! - while (list($id, $email) = SQL_FETCHROW($result)) { + while ($content = SQL_FETCHARRAY($result)) { // Construct mail... - $template = "newsletter"; + $template = 'newsletter'; // Check for extension and sending-mode - if (!EXT_IS_ACTIVE("html_mail", true) && ($_POST['mode'] == "html")) { + if (!isExtensionActive('html_mail', true) && (postRequestElement('mode') == 'html')) { // Set mode to text mode - $_POST['mode'] == "text"; - } elseif ($_POST['mode'] == "html") { + postRequestElement('mode') == 'text'; + } elseif (postRequestElement('mode') == 'html') { // Set HTML templates - $template = "newsletter_html"; + $template = 'newsletter_html'; } // Compile message - $_POST['text'] = COMPILE_CODE($_POST['text']); + setRequestPostElement('text', compileCode(postRequestElement('text'))); // Load template - $msg = LOAD_EMAIL_TEMPLATE($template, array('text' => $_POST['text']), $id); + $message = loadEmailTemplate($template, array('text' => postRequestElement('text')), $content['userid']); // ... and send it away! - SEND_NEWSLETTER($email, $_POST['subject'], $msg, $_POST['mode']); + sendNewsletter($content['email'], postRequestElement('subject'), $message, postRequestElement('mode')); } // Free memory SQL_FREERESULT($result); // Output message - LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_NL_SEND_DONE); + loadTemplate('admin_settings_saved', false, getMessage('ADMIN_NL_SEND_DONE')); } } else { // Copy data into constants for the template and load it - define('_DATESTAMP', MAKE_DATETIME(time(), "3")); - if (EXT_IS_ACTIVE("html_mail")) { + $content['datestamp'] = generateDateTime(time(), 3); + if (isExtensionActive('html_mail')) { // Load template with HTML mode - LOAD_TEMPLATE("admin_newsletter"); + loadTemplate('admin_newsletter', false, $content); } else { // Load template with only text mode - LOAD_TEMPLATE("admin_newsletter_nohtml"); + loadTemplate('admin_newsletter_nohtml', false, $content); } } -// +// [EOF] ?>