我正在使用此module在我的playframework应用程序中发送邮件,我想知道是否可以在邮件中使用一些模板,如Play 1.2.4 documentation中使用的模板。
我正在使用Play 2.0.3
谢谢。
答案 0 :(得分:5)
事实上它很简单。这是一个代码示例。
val mail = use[MailerPlugin].email
def sendEmail() = {
mail.setSubject("Your subject")
mail.addRecipient("Somename <example@example.com>")
mail.addFrom("Someone <noreply@example.com>")
mail.send(
views.txt.helpers.mail.myTemplate().toString,
views.html.helpers.mail.myTemplate().toString
)
}