]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-send_newsletter.php
Code style changed, ext-user continued:
[mailer.git] / inc / modules / admin / what-send_newsletter.php
index 7f295e1111ebc0de17fd36d02b197516a2307aa1..1928e664ad6094e149f46ac4aac4cfd0ba3046bd 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
@@ -45,11 +45,13 @@ addYouAreHereLink('admin', __FILE__);
 
 if (isFormSent()) {
        $result = SQL_QUERY("SELECT
-       `userid`,`email`
+       `userid`,
+       `email`
 FROM
        `{?_MYSQL_PREFIX?}_user_data`
 WHERE
-       `status`='CONFIRMED' AND `nl_receive`='Y'
+       `status`='CONFIRMED' AND
+       `nl_receive`='Y'
 ORDER BY
        `userid` ASC", __FILE__, __LINE__);
        if (!SQL_HASZERONUMS($result)) {
@@ -59,22 +61,22 @@ ORDER BY
                        $template = 'newsletter';
 
                        // Check for extension and sending-mode
-                       if (!isExtensionActive('html_mail', true) && (postRequestParameter('mode') == 'html')) {
+                       if (!isExtensionActive('html_mail', TRUE) && (postRequestElement('mail_mode') == 'html')) {
                                // Set mode to text mode
-                               postRequestParameter('mode') == 'text';
-                       } elseif (postRequestParameter('mode') == 'html') {
+                               postRequestElement('mail_mode') == 'text';
+                       } elseif (postRequestElement('mail_mode') == 'html') {
                                // Set HTML templates
                                $template = 'newsletter_html';
                        }
 
                        // Compile message
-                       setPostRequestParameter('text', preCompileCode(postRequestParameter('text')));
+                       setPostRequestElement('text', preCompileCode(postRequestElement('text')));
 
                        // Load template
-                       $message = loadEmailTemplate($template, array('text' => postRequestParameter('text')), $content['userid']);
+                       $message = loadEmailTemplate($template, array('text' => postRequestElement('text')), $content['userid']);
 
                        // ... and send it away!
-                       sendNewsletter($content['email'], postRequestParameter('subject'), $message, postRequestParameter('mode'));
+                       sendNewsletter($content['email'], postRequestElement('subject'), $message, postRequestElement('mail_mode'));
                } // END - while
 
                // Output message
@@ -90,10 +92,10 @@ ORDER BY
        // Extension html_mail installed?
        if (isExtensionActive('html_mail')) {
                // Load template with HTML mode
-               loadTemplate('admin_newsletter', false, $content);
+               loadTemplate('admin_newsletter', FALSE, $content);
        } else {
                // Load template with only text mode
-               loadTemplate('admin_newsletter_nohtml', false, $content);
+               loadTemplate('admin_newsletter_nohtml', FALSE, $content);
        }
 }