如何使用Grails邮件插件设置内容类型?

时间:2011-02-09 14:40:12

标签: java email grails content-type grails-plugin

Grails mail plugin documentation仅显示如何使用GSP模板设置内容类型:

<%@ page contentType="text/html"%>

但我不使用GSP(并且不会!)并使用FreeMarker生成一个String。有没有办法在不使用GSP的情况下设置内容类型?

1 个答案:

答案 0 :(得分:1)

如果您在sendMail方法中使用html语句,插件将为您设置内容类型。无需gsp模板即可使用sendMail命令。

mailService.sendMail {
            to "recipient@recipient.com"
            from "someone@place.com"
            subject "Email without gsp"
            html "some markup"
        }