如何在Play framework 2.0中使用电子邮件中的模板?

时间:2012-10-17 08:21:36

标签: email scala playframework-2.0

我正在使用此module在我的playframework应用程序中发送邮件,我想知道是否可以在邮件中使用一些模板,如Play 1.2.4 documentation中使用的模板。

我正在使用Play 2.0.3

谢谢。

1 个答案:

答案 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
    )
}