Re-added
[mailer.git] / inc / modules / admin / what-user_contct.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 01/29/2008 *
4  * ================                             Last change: 01/29/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-user_contct.php                             *
8  * -------------------------------------------------------------------- *
9  * Short description : Contact the user over a form                     *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Das Mitglied ueber ein Formular kontaktieren     *
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", basename(__FILE__));
42
43 // Is a user id given?
44 if ((isset($_GET['u_id'])) && (bigintval($_GET['u_id']) > 0)) {
45         // Load user data and display it
46         $result = SQL_QUERY_ESC("SELECT surname, family, email FROM "._MYSQL_PREFIX."_user_data WHERE userid=%s LIMIT 1",
47                 array(bigintval($_GET['u_id'])), __FILE__, __LINE__);
48
49         // Is a user account found?
50         if (SQL_NUMROWS($result) == 1) {
51                 // Load the data
52                 $content = SQL_FETCHARRAY($result);
53
54                 // Including user ID
55                 $content['u_id'] = bigintval($_GET['u_id']);
56
57                 // Shall we send the email?
58                 if (isset($_POST['ok'])) {
59                         // Insert text
60                         $content['text'] = trim(strip_tags($_POST['text']));
61
62                         // Send contact form out
63                         $msg = LOAD_EMAIL_TEMPLATE("member_contct", $content);
64                         SEND_EMAIL($content['email'], ADMIN_CONTACT_USER_SUBJECT, $msg);
65                         LOAD_TEMPLATE("admin_settings_saved", false, ADMIN_USER_CONTACTED);
66                 } else {
67                         // Load contact form template
68                         LOAD_TEMPLATE("admin_contct_user_form", false, $content);
69                 }
70         } else {
71                 // Not found?
72                 LOAD_TEMPLATE("admin_settings_saved", false, sprintf(USER_ACCOUNT_404, bigintval($_GET['u_id'])));
73         }
74
75         // Free result
76         SQL_FREERESULT($result);
77 } else {
78         // Display selection box
79         ADD_MEMBER_SELECTION_BOX();
80 }
81
82 //
83 ?>