I have a Grails 6.2.3 app, based on the API profile.
One part of functionality is to send emails to users, for example for passwordResets. I do this using a gsp template.
I added the following in Gradle next to json views to make that work
• implementation "org.grails.plugins:gsp"
Locally all works fine, now I am deploying to a test server as a bootable Jar and it's as though the template is not being compiled into the jar file.
Does anyone have experience with this?
Am I missing a dependency/plugin config?
Is there an alternative to gsp templates?
Any help/pointers much appreciated.