mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-17 09:17:11 +08:00
6 lines
171 B
Python
6 lines
171 B
Python
from django.core.mail.message import EmailMessage
|
|
from typing import List
|
|
|
|
|
|
class EmailBackend:
|
|
def send_messages(self, email_messages: List[EmailMessage]) -> int: ... |