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

mail queuing and management for the Django web framework

Results 12 django-mailer-2 issues
Sort by recently updated
recently updated
newest added

I have made some minor improvements to django-mailer2: - added cleanup_mail from a patch from https://github.com/SmileyChris/django-mailer-2/pull/16 - refactored the test so you don't need to have a Django project to...

The Django 1.8.3 security update introduces a backport (django/django@76c526f80e43b0bf5199dfe33b1ce31e813fa2fb) which casts the verbosity argument to an int. This results in the error: ``` File ".../django-mailer/django_mailer/management/commands/__init__.py", line 13, in create_handler handler.setLevel(LOGGING_LEVEL[verbosity])...

Hi Chris, Attached is a pull request for a new management command to clean up old mails. Let me know what you think.

Hi Chris, I made a new branch from your fork and applied my changes here. Take a look at it when you have time. Thanks, Selwin

I've noticed the mailer can get locked up where the LOCK_FILE never gets removed. This command blows the file away if it's over 4 minutes old (I suppose it should...

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) ```

settings.py: ``` EMAIL_BACKEND = 'django_mailer.smtp_queue.EmailBackend' ``` in code somewere: ``` except Exception, e: logger.error('discount_cards.views.register -> new_user.save -> %s' % e.message) ``` raise _BadHeaderError: Header values can't contain newlines_ truncated traceback:...

When `queue_email_message` gets an `EmailMessage` with a long subject line (more than 255 chars) it tries to put all of it into `Message.subject` but since it has a maximum length...

Hi Chris, I have a need for sending HTML emails with bcc and I was just wondering if you're open to accepting patches for either or both features. My current...