邮件标题错误修改

back_recharge
lvxinran 2021-04-26 19:42:16 +08:00
parent 3eb625070f
commit b7b9753b6f
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ public class BuyGoodsNewLogic {
//发送邮件
int[] mail = config.getMail();
if(mail!=null&&mail.length>1){
String title = SErrorCodeEerverConfig.errorMap.get(mail[0]).getkey();
String title = SErrorCodeEerverConfig.getI18NMessage(SErrorCodeEerverConfig.errorMap.get(mail[0]).getkey());
String content = SErrorCodeEerverConfig.getI18NMessageNeedConvert(SErrorCodeEerverConfig.errorMap.get(mail[1]).getkey(), new Object[]{config.getName()}, new int[]{1}, "#");
MailLogic.getInstance().sendMail(uid,title,content,"",(int) (TimeUtils.now() / 1000),Global.MAIL_EFFECTIVE_TIME);
}