- Timestamp:
- 2011/02/21 19:26:08 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_5-dev/data/class/helper/SC_Helper_Mail.php
r20205 r20306 57 57 $arrInfo = $objSiteInfo->data; 58 58 59 $objMailView = new SC_SiteView ();59 $objMailView = new SC_SiteView_Ex(); 60 60 // メール本文の取得 61 61 $objMailView->assignobj($objPage); … … 152 152 153 153 if(Net_UserAgent_Mobile::isMobile() === true) { 154 $objMailView = new SC_MobileView ();154 $objMailView = new SC_MobileView_Ex(); 155 155 } else { 156 $objMailView = new SC_SiteView ();156 $objMailView = new SC_SiteView_Ex(); 157 157 } 158 158 // メール本文の取得 … … 183 183 // テンプレートを使用したメールの送信 184 184 function sfSendTplMail($to, $tmp_subject, $tplpath, &$objPage) { 185 $objMailView = new SC_SiteView ();185 $objMailView = new SC_SiteView_Ex(); 186 186 $objSiteInfo = new SC_SiteInfo(); 187 187 $arrInfo = $objSiteInfo->data; … … 220 220 function sfMakeSubject($subject) { 221 221 $objQuery = new SC_Query(); 222 $objMailView = new SC_SiteView ();222 $objMailView = new SC_SiteView_Ex(); 223 223 $objTplAssign = new stdClass; 224 224 … … 287 287 $CONF = SC_Helper_DB_Ex::sfGetBasisData(); 288 288 289 $objMailText = new SC_SiteView ();289 $objMailText = new SC_SiteView_Ex(); 290 290 $objMailText->assign("CONF", $CONF); 291 291 $objMailText->assign("name", $arrCustomerData['name01'] . $arrCustomerData['name02']);
Note: See TracChangeset
for help on using the changeset viewer.
