<?php
public function lfSendMailIn( $mail_template, $email, $bcc_email ) {
$objCustomer = new SC_Customer_Ex( );
$this->CONF = SC_Helper_DB_Ex::sfGetBasisData( );
$this->name01 = $objCustomer->getValue( "name01" );
$this->name02 = $objCustomer->getValue( "name02" );
$CONF = SC_Helper_DB_Ex::sfGetBasisData( );
$this->tpl_shopname = $CONF[ 'shop_name' ];
$this->tpl_infoemail = $CONF[ 'email02' ];
$helperMail = new SC_Helper_Mail_Ex( );
$helperMail->setPage( $this );
$helperMail->sfSendTemplateMail(
$email,
$this->name01. ' 様',
$mail_template,
$this,
$CONF[ 'email03' ],
$CONF[ 'shop_name' ],
$CONF[ 'email02' ],
$bcc_email
);
}