Files
Hotel-Booking/Backend/venv/lib/python3.12/site-packages/aiosmtplib/__init__.py
2025-11-16 15:59:05 +02:00

61 lines
1.3 KiB
Python

"""
aiosmtplib
==========
An asyncio SMTP client.
Originally based on smtplib from the Python 3 standard library by:
The Dragon De Monsyne <dragondm@integral.org>
Author: Cole Maclean <hi@colemaclean.dev>
"""
from .api import send
from .errors import (
SMTPAuthenticationError,
SMTPConnectError,
SMTPConnectTimeoutError,
SMTPDataError,
SMTPException,
SMTPHeloError,
SMTPNotSupported,
SMTPReadTimeoutError,
SMTPRecipientRefused,
SMTPRecipientsRefused,
SMTPResponseException,
SMTPSenderRefused,
SMTPServerDisconnected,
SMTPTimeoutError,
SMTPConnectResponseError,
)
from .response import SMTPResponse
from .smtp import SMTP
from .typing import SMTPStatus
__title__ = "aiosmtplib"
__version__ = "3.0.1"
__author__ = "Cole Maclean"
__license__ = "MIT"
__copyright__ = "Copyright 2022 Cole Maclean"
__all__ = (
"send",
"SMTP",
"SMTPResponse",
"SMTPStatus",
"SMTPAuthenticationError",
"SMTPConnectError",
"SMTPDataError",
"SMTPException",
"SMTPHeloError",
"SMTPNotSupported",
"SMTPRecipientRefused",
"SMTPRecipientsRefused",
"SMTPResponseException",
"SMTPSenderRefused",
"SMTPServerDisconnected",
"SMTPTimeoutError",
"SMTPConnectTimeoutError",
"SMTPReadTimeoutError",
"SMTPConnectResponseError",
)