/django/core/mail/backends/locmem.py

https://code.google.com/p/mango-py/ · Python · 24 lines · 10 code · 3 blank · 11 comment · 1 complexity · 8192e6d5602e069d8b94b720223b14b3 MD5 · raw file

  1. """
  2. Backend for test environment.
  3. """
  4. from django.core import mail
  5. from django.core.mail.backends.base import BaseEmailBackend
  6. class EmailBackend(BaseEmailBackend):
  7. """A email backend for use during test sessions.
  8. The test connection stores email messages in a dummy outbox,
  9. rather than sending them out on the wire.
  10. The dummy outbox is accessible through the outbox instance attribute.
  11. """
  12. def __init__(self, *args, **kwargs):
  13. super(EmailBackend, self).__init__(*args, **kwargs)
  14. if not hasattr(mail, 'outbox'):
  15. mail.outbox = []
  16. def send_messages(self, messages):
  17. """Redirect messages to the dummy outbox"""
  18. mail.outbox.extend(messages)
  19. return len(messages)