win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / 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 ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40 // Add description as navigation point
41 ADD_DESCR("admin", basename(__FILE__));
42
43 OPEN_TABLE("100%", "admin_content admin_content_align", "");
44 if (isset($_POST['ok']))
45 {
46         $result = SQL_QUERY("SELECT userid, email FROM "._MYSQL_PREFIX."_user_data WHERE status='CONFIRMED' AND nl_receive='Y' ORDER BY userid", __FILE__, __LINE__);
47         if (SQL_NUMROWS($result) > 0)
48         {
49                 // Members are available so we can send out the newsletter!
50                 while (list($id, $email) = SQL_FETCHROW($result))
51                 {
52                         // Construct mail...
53                         $template = "newsletter";
54
55                         // Check for extension and sending-mode
56                         if (!EXT_IS_ACTIVE("html_mail", true) && ($_POST['mode'] == "html"))
57                         {
58                                 // Set mode to text mode
59                                 $_POST['mode'] == "text";
60                         }
61                          elseif ($_POST['mode'] == "html")
62                         {
63                                 // Set HTML templates
64                                 $template = "newsletter_html";
65                         }
66
67                         // Compile message
68                         $_POST['text'] = stripslashes(COMPILE_CODE($_POST['text']));
69
70                         // Load template
71                         $msg = LOAD_EMAIL_TEMPLATE($template, $_POST['text'], $id);
72
73                         // ... and send it away!
74                         SEND_NEWSLETTER($email, $_POST['subject'], $msg, $_POST['mode']);
75                 }
76
77                 // Free memory
78                 SQL_FREERESULT($result);
79
80                 // Output message
81                 LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_NL_SEND_DONE);
82         }
83 }
84  else
85 {
86         // Copy data into constants for the template and load it
87         define('_DATESTAMP', MAKE_DATETIME(time(), "3"));
88         if (EXT_IS_ACTIVE("html_mail"))
89         {
90                 // Load template with HTML mode
91                 LOAD_TEMPLATE("admin_newsletter");
92         }
93          else
94         {
95                 // Load template with only text mode
96                 LOAD_TEMPLATE("admin_newsletter_nohtml");
97         }
98 }
99 CLOSE_TABLE();
100 //
101 ?>