More constant rewrites
[mailer.git] / inc / modules / admin / what-send_newsletter.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/28/2003 *
4  * ===============                              Last change: 03/04/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-send_newsletter.php                         *
8  * -------------------------------------------------------------------- *
9  * Short description : Handle HTML or text newsletter                   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Verwalten von HTML- oder Text-Newslettern        *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Add description as navigation point
41 ADD_DESCR("admin", __FILE__);
42
43 if (IS_FORM_SENT()) {
44         $result = SQL_QUERY("SELECT userid, email
45 FROM `{!_MYSQL_PREFIX!}_user_data`
46 WHERE `status`='CONFIRMED' AND nl_receive='Y'
47 ORDER BY userid ASC", __FILE__, __LINE__);
48         if (SQL_NUMROWS($result) > 0) {
49                 // Members are available so we can send out the newsletter!
50                 while (list($id, $email) = SQL_FETCHROW($result)) {
51                         // Construct mail...
52                         $template = "newsletter";
53
54                         // Check for extension and sending-mode
55                         if (!EXT_IS_ACTIVE("html_mail", true) && (REQUEST_POST('mode') == "html")) {
56                                 // Set mode to text mode
57                                 REQUEST_POST('mode') == "text";
58                         } elseif (REQUEST_POST('mode') == "html") {
59                                 // Set HTML templates
60                                 $template = "newsletter_html";
61                         }
62
63                         // Compile message
64                         REQUEST_SET_POST('text', COMPILE_CODE(REQUEST_POST('text')));
65
66                         // Load template
67                         $msg = LOAD_EMAIL_TEMPLATE($template, array('text' => REQUEST_POST('text')), $id);
68
69                         // ... and send it away!
70                         SEND_NEWSLETTER($email, REQUEST_POST('subject'), $msg, REQUEST_POST('mode'));
71                 }
72
73                 // Free memory
74                 SQL_FREERESULT($result);
75
76                 // Output message
77                 LOAD_TEMPLATE("admin_settings_saved", false, getMessage('ADMIN_NL_SEND_DONE'));
78         }
79 } else {
80         // Copy data into constants for the template and load it
81         define('_DATESTAMP', MAKE_DATETIME(time(), "3"));
82         if (EXT_IS_ACTIVE("html_mail")) {
83                 // Load template with HTML mode
84                 LOAD_TEMPLATE("admin_newsletter");
85         } else {
86                 // Load template with only text mode
87                 LOAD_TEMPLATE("admin_newsletter_nohtml");
88         }
89 }
90
91 //
92 ?>