I'm building a scala template which will be used to generate HTML for emails sent from a website.
I'd like it to reuse the same LESS stylesheet I'm using on my website. For this, I'll need the compiled CSS to be available so I can inline it in the output of the scala template (within <style>
tags, as opposed to CSS in a separate file/URL).
What's the most elegant way of doing this in the Play Framework, please?