python-emails
python-emails copied to clipboard
Modern python library for emails
Results
21
python-emails issues
Sort by
recently updated
recently updated
newest added
Now we have to make explicit django template rendering: ``` from django.template.loader import get_template DjangoMessage(html=get_template(template_name).render({'a': 42}, ...) ``` Proposed way is to support lazy rendering: ``` m = DjangoMessage(html=get_template(template_name) m.render({'a':...