django-mailer-2 icon indicating copy to clipboard operation
django-mailer-2 copied to clipboard

in send_all call to send_queued_message not in try-catch

Open funvit opened this issue 11 years ago • 0 comments

i just got UnicodeEncodeError in django_mailer/engine.py", line 91, in send_all

fix:

try:
    result = send_queued_message(message, smtp_connection=connection, blacklist=blacklist)
except Exception, e:
    result = constants.RESULT_FAILED
    logger.error(e)

funvit avatar Mar 11 '13 13:03 funvit