I'm writing a Django 1.4 app that will send HTML email. I'm using Django templates to render the email content, but I'm unsure how to store the templates.
I can store them in an email app (like I would other templates), but it feels silly to use a static file.
I thought about creating an Email model and storing the template code as a TextField, which would work.
I searched for better solutions and saw sendwithus.com on reddit, which is a neat idea...
Is there a Django convention for this sort of thing?