会員登録完了メール 
      他のメール同様、タイトルにmail_title.tplを使いますが、WEB管理画面では管理していない自動返信メールです。 
      登録者に対して、自動で登録が完了したことをお知らせするメールですので、やり取りする必要がないからです。 
      ですので、タイトルを変える必要がある場合は、直接ファイルを書き直します。 
      デフォルトは 
      
         【パッチワークギルド】 会員登録のご完了 
        
          です。”ご完了”ってちょっとへんです(笑)。 
         
       
        
      【●●】の部分は、ショップ名です。詳しくはメールタイトルで触れたとおりです。 
      それ以外の、右のタイトルを修正します。 
       
         
      cube/data/class/pages/entry/LC_Page_Entry.php 
       
      PC版 
        186行目あたり 
      
        
           // 仮会員が有効の場合 
if(CUSTOMER_CONFIRM_MAIL == true) { 
$subject = $mailHelper->sfMakesubject($objQuery, $objMailText, $this, '会員登録のご確認'); 
$toCustomerMail = $objMailText->fetch("mail_templates/customer_mail.tpl"); 
} else { 
$subject = $mailHelper->sfMakesubject($objQuery, $objMailText, $this, '会員登録のご完了'); 
$toCustomerMail = $objMailText->fetch("mail_templates/customer_regist_mail.tpl"); 
 
                      | 
         
       
        
      モバイル版 
        494行目あたり 
      
        
           // 仮会員が有効の場合 
if(CUSTOMER_CONFIRM_MAIL == true) { 
// Moba8パラメーターを保持する場合はカラム追加 
if (isset($_SESSION['a8'])) $this->etc_value = "&a8=". $_SESSION['a8']; 
$subject = $objHelperMail->sfMakeSubject($objQuery, $objMailText, $this, '会員登録のご確認'); 
$toCustomerMail = $objMailText->fetch("mail_templates/customer_mail.tpl"); 
} else { 
$subject = $objHelperMail->sfMakesubject($objQuery, $objMailText, $this, '会員登録のご完了'); 
$toCustomerMail = $objMailText->fetch("mail_templates/customer_regist_mail.tpl"); | 
         
       
        
      
        オレンジの部分を必要に応じて直して下さい。 
          いずれも上が仮会員登録を有効にしている場合のタイトル。下が一発登録会員の場合のタイトルです。 
       
       |