Grails mail plugin documentation仅显示如何使用GSP模板设置内容类型:
<%@ page contentType="text/html"%>
但我不使用GSP(并且不会!)并使用FreeMarker生成一个String。有没有办法在不使用GSP的情况下设置内容类型?
答案 0 :(得分:1)
如果您在sendMail方法中使用html语句,插件将为您设置内容类型。无需gsp模板即可使用sendMail命令。
mailService.sendMail {
to "recipient@recipient.com"
from "someone@place.com"
subject "Email without gsp"
html "some markup"
}