mailer
mailer copied to clipboard
A light-weight, modular, message representation and mail delivery framework for Python.
> **Upstream tracking bug:** https://bugs.python.org/issue36094 --- ``` from marrow.mailer import Mailer, Message mailer = Mailer(dict( transport = dict( use = 'smtp', host = 'smtp.office365.com', port = 587, tls='required', username='[email protected]', password='password')))...
**Exception** ``` Traceback (most recent call last): File "django/core/handlers/exception.py", line 41, in inner response = get_response(request) File "django/core/handlers/base.py", line 187, in _get_response response = self.process_exception_by_middleware(e, request) File "django/core/handlers/base.py", line 185,...
See traceback below. I was able to get it to work using hasattr to gate that if statement. try/except could also be used. Maybe a better solution elsewhere tho. Could...
- Round-robin with prioritization. - Least used (based on number of recipients).