opencart上傳,magento修改模板
2022-10-20 14:05:11 - 米境通跨境電商
大多開(kāi)源電子商務(wù)系統(tǒng)都具有發(fā)郵件的功能,如在會(huì)員注冊(cè)成功后或會(huì)員成功下定單后,系統(tǒng)會(huì)自動(dòng)向會(huì)員的郵箱里發(fā)送一封郵件,opencart當(dāng)然也不例外。但和magento相比,OpenCart系統(tǒng)發(fā)新不能像Magento那樣方便的在后臺(tái)修改e-mail的內(nèi)容模板,我們應(yīng)該怎么辦呢?
唯一的辦法就是修改語(yǔ)言文件來(lái)達(dá)到修改電子郵件內(nèi)容的目的,我們以會(huì)員注冊(cè)成功后發(fā)送郵件為例子,以英文語(yǔ)言包為例,默認(rèn)的英文郵件就在
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是變量,不懂的可以對(duì)應(yīng)著郵件修改,以此類推,此文件夾下的其他文件也是對(duì)應(yīng)的郵件模板,如訂單等,并且支持html語(yǔ)法。