Index: /branches/version-2_4/data/class/SC_View.php
===================================================================
--- /branches/version-2_4/data/class/SC_View.php	(revision 16741)
+++ /branches/version-2_4/data/class/SC_View.php	(revision 18706)
@@ -221,6 +221,6 @@
 
 class SC_MobileView extends SC_SiteView {
-    function SC_MobileView() {
-        parent::SC_SiteView();
+    function SC_MobileView($cart = true) {
+        parent::SC_SiteView($cart);
         $this->_smarty->template_dir = MOBILE_TEMPLATE_DIR;
         $this->_smarty->compile_dir = MOBILE_COMPILE_DIR;
Index: /branches/version-2_4/data/class/pages/admin/customer/LC_Page_Admin_Customer.php
===================================================================
--- /branches/version-2_4/data/class/pages/admin/customer/LC_Page_Admin_Customer.php	(revision 17791)
+++ /branches/version-2_4/data/class/pages/admin/customer/LC_Page_Admin_Customer.php	(revision 18706)
@@ -215,10 +215,20 @@
         // 登録メール再送
         if ($_POST['mode'] == "resend_mail") {
-            $arrRet = $objQuery->select("name01, name02, secret_key, email", "dtb_customer","customer_id = ? AND del_flg <> 1 AND status = 1", array($_POST["edit_customer_id"]));
+            $arrRet = $objQuery->select("name01, name02, secret_key, email, email_mobile", "dtb_customer","customer_id = ? AND del_flg <> 1 AND status = 1", array($_POST["edit_customer_id"]));
             if( is_array($arrRet) === true && count($arrRet) > 0 ){
 
                 $CONF = $objDb->sf_getBasisData();
                 $this->CONF = $CONF;
-                $objMailText = new SC_SiteView();
+                /**
+                 * 携帯メールアドレスが登録されていれば携帯サイトから仮会員登録したものと判定する。
+                 * TODO: とりあえずの簡易的な判定なので、将来的には判定ルーチンを修正した方が良い。
+                 */
+                if (!empty($arrRet[0]['email_mobile'])) {
+                    $objMailText = new SC_MobileView(false);
+                    $this->to_name01 = $arrRet[0]['name01'];
+                    $this->to_name02 = $arrRet[0]['name02'];
+                } else {
+                    $objMailText = new SC_SiteView(false);
+				}
                 $objMailText->assignobj($this);
                 $mailHelper = new SC_Helper_Mail_Ex();
