From 14927f5445b50ec7d8709ab060a515865faba27c Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Tue, 16 Jul 2002 11:43:06 +0000 Subject: bye bye git-svn-id: file:///svn/phpbb/trunk@2685 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/admin/admin_mass_email.php | 204 --------------------------------------- 1 file changed, 204 deletions(-) delete mode 100644 phpBB/admin/admin_mass_email.php (limited to 'phpBB/admin/admin_mass_email.php') diff --git a/phpBB/admin/admin_mass_email.php b/phpBB/admin/admin_mass_email.php deleted file mode 100644 index c91335d0a1..0000000000 --- a/phpBB/admin/admin_mass_email.php +++ /dev/null @@ -1,204 +0,0 @@ - " . TRUE . " - AND u.user_id = ug.user_id"; - } - else - { - $sql = "SELECT user_email - FROM " . USERS_TABLE; - } - if( !($result = $db->sql_query($sql)) ) - { - message_die(GENERAL_ERROR, 'Could not select group members', '', __LINE__, __FILE__, $sql); - } - - - - - - if( !$db->sql_numrows($result) ) - { - // - // Output a relevant GENERAL_MESSAGE about users/group - // not existing - // - } - - $email_list = $db->sql_fetchrowset($g_result); - - - - - - $subject = stripslashes($HTTP_POST_VARS['subject']); - $message = stripslashes($HTTP_POST_VARS['message']); - - // - // Error checking needs to go here ... if no subject and/or - // no message then skip over the send and return to the form - // - $error = FALSE; - - if( !$error ) - { - include($phpbb_root_path . 'includes/emailer.'.$phpEx); - // - // Let's do some checking to make sure that mass mail functions - // are working in win32 versions of php. - // - if( preg_match('/[c-z]:\\\.*/i', getenv('PATH')) && !$board_config['smtp_delivery']) - { - // We are running on windows, force delivery to use - // our smtp functions since php's are broken by default - $board_config['smtp_delivery'] = 1; - $board_config['smtp_host'] = get_cfg_var('SMTP'); - } - $emailer = new emailer($board_config['smtp_delivery']); - - $email_headers = 'From: ' . $board_config['board_email'] . "\n"; - - $bcc_list = ''; - for($i = 0; $i < count($email_list); $i++) - { - $bcc_list .= ( ( $bcc_list != '' ) ? ', ' : '' ) . $email_list[$i]['user_email']; - } - $email_headers .= "Bcc: $bcc_list\n"; - - $email_headers .= 'Return-Path: ' . $userdata['board_email'] . "\n"; - $email_headers .= 'X-AntiAbuse: Board servername - ' . $server_name . "\n"; - $email_headers .= 'X-AntiAbuse: User_id - ' . $userdata['user_id'] . "\n"; - $email_headers .= 'X-AntiAbuse: Username - ' . $userdata['username'] . "\n"; - $email_headers .= 'X-AntiAbuse: User IP - ' . $user_ip . "\r\n"; - - $emailer->use_template('admin_send_email'); - $emailer->email_address($board_config['board_email']); - $emailer->set_subject($subject); - $emailer->extra_headers($email_headers); - - $emailer->assign_vars(array( - 'SITENAME' => $board_config['sitename'], - 'BOARD_EMAIL' => $board_config['board_email'], - 'MESSAGE' => $message) - ); - $emailer->send(); - $emailer->reset(); - - $message = $lang['Email_sent'] . '

' . sprintf($lang['Click_return_admin_index'], '', ''); - - message_die(GENERAL_MESSAGE, $message); - } -} - -// -// Initial selection -// - -$sql = "SELECT group_id, group_name - FROM ".GROUPS_TABLE . " - WHERE group_single_user <> 1"; -if ( !($result = $db->sql_query($sql)) ) -{ - message_die(GENERAL_ERROR, 'Could not obtain list of groups', '', __LINE__, __FILE__, $sql); -} - -$select_list = ''; - -// -// Generate page -// -include('page_header_admin.'.$phpEx); - -$template->set_filenames(array( - 'body' => 'admin/user_email_body.tpl') -); - -$template->assign_vars(array( - 'MESSAGE' => $message, - 'SUBJECT' => $subject, - - 'L_EMAIL_TITLE' => $lang['Email'], - 'L_EMAIL_EXPLAIN' => $lang['Mass_email_explain'], - 'L_COMPOSE' => $lang['Compose'], - 'L_RECIPIENTS' => $lang['Recipients'], - 'L_EMAIL_SUBJECT' => $lang['Subject'], - 'L_EMAIL_MSG' => $lang['Message'], - 'L_EMAIL' => $lang['Email'], - 'L_NOTICE' => $notice, - - 'S_USER_ACTION' => append_sid('admin_mass_email.'.$phpEx), - 'S_GROUP_SELECT' => $select_list) -); - -$template->pparse('body'); - -include('page_footer_admin.'.$phpEx); - -?> \ No newline at end of file -- cgit v1.2.1