Ignore:
Timestamp:
2013/09/09 16:38:31 (11 years ago)
Author:
michael_nelson
Message:

#2116 仮登録メール再送で会員登録完了メールが送信されます

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13_0/data/class/helper/SC_Helper_Mail.php

    r23126 r23201  
    320320     * @return boolean true:成功 false:失敗 
    321321     */ 
    322     public function sfSendRegistMail($secret_key, $customer_id = '', $is_mobile = false) 
     322    public function sfSendRegistMail($secret_key, $customer_id = '', $is_mobile = false, $resend_flg = false) 
    323323    { 
    324324        // 会員データの取得 
     
    345345        $objHelperMail  = new SC_Helper_Mail_Ex(); 
    346346 
    347         // 仮会員が有効の場合 
    348         if (CUSTOMER_CONFIRM_MAIL == true and $arrCustomerData['status'] == 1) { 
     347        // 仮会員が有効の場合     
     348        if (CUSTOMER_CONFIRM_MAIL == true and $arrCustomerData['status'] == 1 or $arrCustomerData['status'] == 1 and $resend_flg = true) { 
    349349            $subject        = $objHelperMail->sfMakeSubject('会員登録のご確認', $objMailText); 
    350350            $toCustomerMail = $objMailText->fetch('mail_templates/customer_mail.tpl'); 
     
    352352            $subject        = $objHelperMail->sfMakeSubject('会員登録のご完了', $objMailText); 
    353353            $toCustomerMail = $objMailText->fetch('mail_templates/customer_regist_mail.tpl'); 
     354             
    354355        } 
    355356 
Note: See TracChangeset for help on using the changeset viewer.