More fixes, thanks to Piter01
[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 (isset($_POST['ok']))
44 {
45         $result = SQL_QUERY("SELECT userid, email FROM "._MYSQL_PREFIX."_user_data WHERE status='CONFIRMED' AND nl_receive='Y' ORDER BY userid", __FILE__, __LINE__);
46         if (SQL_NUMROWS($result) > 0)
47         {
48                 // Members are available so we can send out the newsletter!
49                 while (list($id, $email) = SQL_FETCHROW($result))
50                 {
51                         // Construct mail...
52                         $template = "newsletter";
53
54                         // Check for extension and sending-mode
55                         if (!EXT_IS_ACTIVE("html_mail", true) && ($_POST['mode'] == "html"))
56                         {
57                                 // Set mode to text mode
58                                 $_POST['mode'] == "text";
59                         }
60                          elseif ($_POST['mode'] == "html")
61                         {
62                                 // Set HTML templates
63                                 $template = "newsletter_html";
64                         }
65
66                         // Compile message
67                         $_POST['text'] = COMPILE_CODE($_POST['text']);
68
69                         // Load template
70                         $msg = LOAD_EMAIL_TEMPLATE($template, array('text' => $_POST['text']), $id);
71
72                         // ... and send it away!
73                         SEND_NEWSLETTER($email, $_POST['subject'], $msg, $_POST['mode']);
74                 }
75
76                 // Free memory
77                 SQL_FREERESULT($result);
78
79                 // Output message
80                 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_NL_SEND_DONE);
81         }
82 }
83  else
84 {
85         // Copy data into constants for the template and load it
86         define('_DATESTAMP', MAKE_DATETIME(time(), "3"));
87         if (EXT_IS_ACTIVE("html_mail"))
88         {
89                 // Load template with HTML mode
90                 LOAD_TEMPLATE("admin_newsletter");
91         }
92          else
93         {
94                 // Load template with only text mode
95                 LOAD_TEMPLATE("admin_newsletter_nohtml");
96         }
97 }
98
99 //
100 ?>