mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-01-28 13:52:12 +08:00
9 lines
310 B
Python
9 lines
310 B
Python
from django.core.mail.message import EmailMessage
|
|
|
|
|
|
class EmailBackend:
|
|
def __init__(self, *args, file_path = ..., **kwargs) -> None: ...
|
|
def _get_filename(self) -> str: ...
|
|
def close(self) -> None: ...
|
|
def open(self) -> bool: ...
|
|
def write_message(self, message: EmailMessage) -> None: ... |