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