电子邮件是使用Spring和Java邮件发件人发送的。
无论如何,我可以使用普通的jsp视图和jstl标签吗?我不想学习另一堆标签/语法吗?
目前,我的代码如下所示:
StringBuffer content = new StringBuffer(); Configuration configuration = freeMarkerConfigurer.getConfiguration(); String templateName = "vslEmail.ftl"; Map<String, String> templateVars = new HashMap<String, String>(); templateVars.put("firstName", "john"); templateVars.put("surname", "doe"); try { content.append(FreeMarkerTemplateUtils.processTemplateIntoString(configuration.getTemplate(ftlName), tempalteVars)); } catch (Exception e) { // handle } // content.append("<br>Test data"); sendMime(defaultEmailAddress, subject, content.toString());
我只希望引用jsp而不是ftl?
您可以显式呈现一个jsp,但是您需要一个Request对象!
request.getRequestDispatcher("/WEB-INF/mai/myMail.jsp").include(request, response);