updated django-mailer-2#23
Open
aaloy wants to merge 47 commits into
Open
Conversation
Corrects a bug when email has unicode chars.
Upgraded setup to remove testing dependency
download attachments and see how the e-mail is displayed.
sytles and e-mails styles.
…l form. Added links to the message in the list views.
Fixes TemplateDoesNotExist when trying to see the email in the admin.
Fixes TemplateDoesNotExist when trying to see the email in the admin.
Modern django
I was getting the following error after running './manage.py send_mail':
Traceback (most recent call last):
File "./manage.py", line 10, in <module>
execute_from_command_line(sys.argv)
File "/env/lib/python2.7/site-packages/django/core/management/__init__.py", line 351, in execute_from_command_line
utility.execute()
File "/env/lib/python2.7/site-packages/django/core/management/__init__.py", line 343, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/env/lib/python2.7/site-packages/django/core/management/base.py", line 394, in run_from_argv
self.execute(*args, **cmd_options)
File "/env/lib/python2.7/site-packages/django/core/management/base.py", line 445, in execute
output = self.handle(*args, **options)
File "/env/lib/python2.7/site-packages/django/core/management/base.py", line 661, in handle
return self.handle_noargs(**options)
File "/env/src/django-mailer/django_mailer/management/commands/send_mail.py", line 41, in handle_noargs
handler = create_handler(verbosity)
File "/env/src/django-mailer/django_mailer/management/commands/__init__.py", line 13, in create_handler
handler.setLevel(LOGGING_LEVEL[verbosity])
KeyError: 1
========================
Changing
handler.setLevel(LOGGING_LEVEL[verbosity])
to
handler.setLevel(LOGGING_LEVEL[str(verbosity)])
fixes it.
Bux fix: KeyError
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
I have made some minor improvements to django-mailer2: