Hi there, I'm asking the best solution for a very 'simple' problem.
Today, I have emails templates files and also the logic for sending those emails, on my frontend/website.
Now, I'm improving my code by removing any Mail logic to my BL. So my idea is to have my Business Layer (BL) project, responsible for sending emails, if some business behaviour occur, and not the frontend.
The question that I have, is that I must still be able to change the templates without requiring to compile the BL project.
Do you have any good solution?