Index: branches/dev/data/Smarty/templates/admin/mail/index.tpl
===================================================================
--- branches/dev/data/Smarty/templates/admin/mail/index.tpl	(revision 11742)
+++ branches/dev/data/Smarty/templates/admin/mail/index.tpl	(revision 11771)
@@ -133,4 +133,14 @@
 									<span style="<!--{$arrErr.email|sfGetErrorColor}-->">
 									<input type="text" name="email" maxlength="<!--{$smarty.const.STEXT_LEN}-->" value="<!--{$list_data.email|escape}-->" size="60" class="box60"  style="<!--{$arrErr.email|sfGetErrorColor}-->"/>
+									</span>
+								</td>
+							</tr>
+
+							<tr class="fs12n">
+								<td bgcolor="#f2f1ec" width="110">·ÈÂÓ¥á¡¼¥ë¥¢¥É¥ì¥¹</td>
+								<td bgcolor="#ffffff" colspan="3">
+									<!--{if $arrErr.email_mobile}--><span class="red12"><!--{$arrErr.email_mobile}--></span><!--{/if}-->
+									<span style="<!--{$arrErr.email_mobile|sfGetErrorColor}-->">
+									<input type="text" name="email_mobile" maxlength="<!--{$smarty.const.STEXT_LEN}-->" value="<!--{$list_data.email_mobile|escape}-->" size="60" class="box60"  style="<!--{$arrErr.email_mobile|sfGetErrorColor}-->"/>
 									</span>
 								</td>
Index: branches/dev/data/class/SC_CustomerList.php
===================================================================
--- branches/dev/data/class/SC_CustomerList.php	(revision 11762)
+++ branches/dev/data/class/SC_CustomerList.php	(revision 11771)
@@ -164,5 +164,32 @@
 			$this->setWhere($sql_where);
 		}
-		
+
+		//¡¡E-MAIL(mobile)
+		if (strlen($this->arrSql['email_mobile']) > 0) {
+			//¥«¥ó¥Þ¶èÀÚ¤ê¤ÇÊ£¿ô¤Î¾ò·ï»ØÄê²ÄÇ½¤Ë
+			$this->arrSql['email_mobile'] = explode(",", $this->arrSql['email_mobile']);
+			$sql_where = "";
+			foreach($this->arrSql['email_mobile'] as $val) {
+				$val = trim($val);
+				//¸¡º÷¾ò·ï¤ò´Þ¤Þ¤Ê¤¤
+				if($this->arrSql['not_email_mobileinc'] == '1') {
+					if($sql_where == "") {
+						$sql_where .= "dtb_customer.email_mobile NOT ILIKE ? ";
+					} else {
+						$sql_where .= "AND dtb_customer.email_mobile NOT ILIKE ? ";
+					}
+				} else {				
+					if($sql_where == "") {
+						$sql_where .= "dtb_customer.email_mobile ILIKE ? ";
+					} else {
+						$sql_where .= "OR dtb_customer.email_mobile ILIKE ? ";
+					}
+				}
+				$searchemail_mobile = $this->addSearchStr($val);
+				$this->arrVal[] = $searchemail_mobile;
+			}
+			$this->setWhere($sql_where);
+		}
+				
 		//¡¡ÇÛ¿®¥á¡¼¥ë¥¢¥É¥ì¥¹¼ïÊÌ
 		if ( $mode == 'magazine' ){
