- =help('{이름} , {별명} , {회원아이디} , {이메일} , {생일} 처럼 HTML 코드에 삽입하면 해당 내용에 맞게 변환하여 메일 발송합니다.')?>
+ =help('{이름} , {별명} , {회원아이디} , {이메일} 처럼 HTML 코드에 삽입하면 해당 내용에 맞게 변환하여 메일 발송합니다.')?>
=textarea_size('ma_content')?>
diff --git a/adm/mail_select_form.php b/adm/mail_select_form.php
index 4a053d6e1..daff1ce9c 100644
--- a/adm/mail_select_form.php
+++ b/adm/mail_select_form.php
@@ -34,8 +34,6 @@ if (!isset($mb_id1)) $mb_id1 = 1;
if (!isset($mb_level_from)) $mb_level_from = 1;
if (!isset($mb_level_to)) $mb_level_to = 10;
if (!isset($mb_mailling)) $mb_mailling = 1;
-if (!isset($mb_sex)) $mb_sex = 1;
-if (!isset($mb_area)) $mb_area = 1;
$g4['title'] = '회원메일발송';
include_once('./admin.head.php');
@@ -59,58 +57,12 @@ include_once('./admin.head.php');
>
에서
까지
-
-
-
-
-
-
-
- =help('5월5일 인 경우, 0505 와 같이 입력 , 둘다 입력해야함')?>
- 부터
- 까지
단어 포함 (예 : @sir.co.kr)
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/adm/mail_select_list.php b/adm/mail_select_list.php
index 2146bc870..3e958b96e 100644
--- a/adm/mail_select_list.php
+++ b/adm/mail_select_list.php
@@ -19,18 +19,6 @@ if ($mb_id1 != 1)
if ($mb_email != "")
$sql_where .= " and mb_email like '%{$mb_email}%' ";
-// 성별
-if ($mb_sex != "")
- $sql_where .= " and mb_sex = '{$mb_sex}' ";
-
-// 생일
-if ($mb_birth_from && $mb_birth_to)
- $sql_where .= " and substring(mb_birth,5,4) between '{$mb_birth_from}' and '{$mb_birth_to}' ";
-
-// 지역
-if ($mb_area != "")
- $sql_where .= " and mb_addr1 like '{$mb_area}%' ";
-
// 메일링
if ($mb_mailling != "")
$sql_where .= " and mb_mailling = '{$mb_mailling}' ";
@@ -39,14 +27,12 @@ if ($mb_mailling != "")
$sql_where .= " and mb_level between '{$mb_level_from}' and '{$mb_level_to}' ";
// 게시판그룹회원
-if ($gr_id)
-{
+if ($gr_id) {
$group_member = "";
$comma = "";
$sql2 = " select mb_id from {$g4['group_member_table']} where gr_id = '{$gr_id}' order by mb_id ";
$result2 = sql_query($sql2);
- for ($k=0; $row2=sql_fetch_array($result2); $k++)
- {
+ for ($k=0; $row2=sql_fetch_array($result2); $k++) {
$group_member .= "{$comma}'{$row2['mb_id']}'";
$comma = ",";
}
@@ -71,10 +57,6 @@ $ma_last_option .= "mb_id1={$mb_id1}";
$ma_last_option .= "||mb_id1_from={$mb_id1_from}";
$ma_last_option .= "||mb_id1_to={$mb_id1_to}";
$ma_last_option .= "||mb_email={$mb_email}";
-$ma_last_option .= "||mb_sex={$mb_sex}";
-$ma_last_option .= "||mb_birth_from={$mb_birth_from}";
-$ma_last_option .= "||mb_birth_to={$mb_birth_to}";
-$ma_last_option .= "||mb_area={$mb_area}";
$ma_last_option .= "||mb_mailling={$mb_mailling}";
$ma_last_option .= "||mb_level_from={$mb_level_from}";
$ma_last_option .= "||mb_level_to={$mb_level_to}";
@@ -103,7 +85,7 @@ include_once('./admin.head.php');