2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 01/29/2008 *
4 * =================== Last change: 01/29/2008 *
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 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * Needs to be in all Files and every File needs "svn propset *
18 * svn:keywords Date Revision" (autoprobset!) at least!!!!!! *
19 * -------------------------------------------------------------------- *
20 * Copyright (c) 2003 - 2009 by Roland Haeder *
21 * Copyright (c) 2009, 2010 by Mailer Developer Team *
22 * For more information visit: http://www.mxchange.org *
24 * This program is free software; you can redistribute it and/or modify *
25 * it under the terms of the GNU General Public License as published by *
26 * the Free Software Foundation; either version 2 of the License, or *
27 * (at your option) any later version. *
29 * This program is distributed in the hope that it will be useful, *
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
32 * GNU General Public License for more details. *
34 * You should have received a copy of the GNU General Public License *
35 * along with this program; if not, write to the Free Software *
36 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
38 ************************************************************************/
40 // Some security stuff...
41 if ((!defined('__SECURITY')) || (!isAdmin())) {
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
48 // Is a user id given?
49 if ((isGetRequestParameterSet('userid')) && (bigintval(getRequestParameter('userid')) > 0)) {
50 // Is a user account found?
51 if (fetchUserData(getRequestParameter('userid'))) {
53 $content = getUserDataArray();
56 $content['userid'] = bigintval(getRequestParameter('userid'));
58 // Shall we send the email?
61 $content['text'] = trim(secureString(postRequestParameter('text')));
63 // Load email template
64 $message = loadEmailTemplate('member_contct', $content, getRequestParameter('userid'));
66 // Send contact form out
67 sendEmail($content['email'], '{--ADMIN_CONTACT_USER_SUBJECT--}', $message);
70 loadTemplate('admin_settings_saved', false, '{--ADMIN_USER_CONTACTED--}');
72 // Load contact form template
73 loadTemplate('admin_contct_user_form', false, $content);
77 loadTemplate('admin_settings_saved', false, getMaskedMessage('USER_ACCOUNT_404', bigintval(getRequestParameter('userid'))));
80 // Display selection box
81 addMemberSelectionBox();