mysteriendrama/lib/python3.11/site-packages/django/core/mail/backends/dummy.py

11 lines
234 B
Python
Raw Normal View History

2023-07-22 12:04:19 +02:00
"""
Dummy email backend that does nothing.
"""
from django.core.mail.backends.base import BaseEmailBackend
class EmailBackend(BaseEmailBackend):
def send_messages(self, email_messages):
return len(list(email_messages))