My Play application automatically generates some HTML emails, which of course reference some images on the server. Since HTML emails require full URLs to get the images on the client side, I've defined the base URL in my application.conf
and then build the full path in my view template. That said, is there a way to get the complete URL of the public/images
directory so that I no longer need an additional configuration?
Thanks.