When emails are rendered from templates, the templates are looked up in "grails_app/views":
mailService.sendMail {
from sender
to recepient.email
subject "Don't forget"
body (view: "/emails/reminder",
model:[recepient: recepient, document: document])
}
How can I put the mail templates outside of the application (war file) into the file system?