python-emails
python-emails copied to clipboard
Modern python library for emails
Results
22
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':...
This is a slight improvement to the SMTPClient. Currently the client does not gracefully quit the connection when authentication fails. While the socket is eventually closed on GC, this could...