I'm building an app with over 20 different email notifications and I want to provide a nice way for the product team to verify the copy for each of these emails. I'm considering building two views, one to list all the email templates and another to display their content. I did some googling and have not yet found a better approach. Does there exist a better method for managing email templates in Django?
Asked
Active
Viewed 223 times
0
-
None that so far. Only way is to manage it in the templates html and create a test view to render it for the product team. `/email?name=welcome` and you can create a static page with list of templates. – Raja Simon Feb 09 '21 at 19:38
-
Yeah, that's essentially what I'm doing now. – delighted.rock Feb 09 '21 at 19:59
-
You can also answer your own question. – Raja Simon Feb 10 '21 at 05:01