opencart定制,magento模板修改
2022-08-26 10:43:23 - 米境通跨境電商
大多開源電子商務系統(tǒng)都具有發(fā)郵件的功能,如在會員注冊成功后或會員成功下定單后,系統(tǒng)會自動向會員的郵箱里發(fā)送一封郵件,opencart當然也不例外。但和magento相比,OpenCart系統(tǒng)發(fā)新不能像Magento那樣方便的在后臺修改e-mail的內(nèi)容模板,我們應該怎么辦呢?
唯一的辦法就是修改語言文件來達到修改電子郵件內(nèi)容的目的,我們以會員注冊成功后發(fā)送郵件為例子,以英文語言包為例,默認的英文郵件就在
catalog/language/english/mail/ccount_create.php
文件中.內(nèi)容如下
//Text
$_['text_subject']='%s-Thankyouforregistering';
$_['text_welcome']='Welcomeandthankyouforregisteringat%s!';
$_['text_login']='YouraccounthasnowbeencreatedandyoucanloginbyusingyouremailaddressandpasswordbyvisitingourwebsiteoratthefollowingURL:';
$_['text_approval']='Youraccountmustbeapprovedbeforeyoucanlogin.OnceapprovedyoucanloginbyusingyouremailaddressandpasswordbyvisitingourwebsiteoratthefollowingURL:';
$_['text_services']='Uponloggingin,youwillbeabletoaccessotherservicesincludingreviewingpastorders,printinginvoicesandeditingyouraccountinformation.';
$_['text_thanks']='Thanks,';
其中的內(nèi)容不需要做解釋了,一目了然,需要注意的是%s是變量,不懂的可以對應著郵件修改,以此類推,此文件夾下的其他文件也是對應的郵件模板,如訂單等,并且支持html語法。