summaryrefslogtreecommitdiff
path: root/tests/mail/custombackend.py
blob: 14e7f077ba708e7b020dfb37a2af6517aec3f7d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""A custom backend for testing."""

from django.core.mail.backends.base import BaseEmailBackend


class EmailBackend(BaseEmailBackend):
    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.test_outbox = []

    def send_messages(self, email_messages):
        # Messages are stored in an instance variable for testing.
        self.test_outbox.extend(email_messages)
        return len(email_messages)