plain.email 0.10.0__tar.gz → 0.10.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {plain_email-0.10.0 → plain_email-0.10.1}/.gitignore +3 -0
- {plain_email-0.10.0 → plain_email-0.10.1}/PKG-INFO +1 -1
- {plain_email-0.10.0 → plain_email-0.10.1}/plain/email/backends/smtp.py +1 -1
- {plain_email-0.10.0 → plain_email-0.10.1}/pyproject.toml +1 -1
- {plain_email-0.10.0 → plain_email-0.10.1}/LICENSE +0 -0
- {plain_email-0.10.0 → plain_email-0.10.1}/README.md +0 -0
- {plain_email-0.10.0 → plain_email-0.10.1}/plain/email/README.md +0 -0
- {plain_email-0.10.0 → plain_email-0.10.1}/plain/email/__init__.py +0 -0
- {plain_email-0.10.0 → plain_email-0.10.1}/plain/email/backends/__init__.py +0 -0
- {plain_email-0.10.0 → plain_email-0.10.1}/plain/email/backends/base.py +0 -0
- {plain_email-0.10.0 → plain_email-0.10.1}/plain/email/backends/console.py +0 -0
- {plain_email-0.10.0 → plain_email-0.10.1}/plain/email/backends/filebased.py +0 -0
- {plain_email-0.10.0 → plain_email-0.10.1}/plain/email/default_settings.py +0 -0
- {plain_email-0.10.0 → plain_email-0.10.1}/plain/email/message.py +0 -0
- {plain_email-0.10.0 → plain_email-0.10.1}/plain/email/utils.py +0 -0
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
import smtplib
|
|
4
4
|
import ssl
|
|
5
5
|
import threading
|
|
6
|
+
from functools import cached_property
|
|
6
7
|
|
|
7
8
|
from plain.runtime import settings
|
|
8
|
-
from plain.utils.functional import cached_property
|
|
9
9
|
|
|
10
10
|
from ..backends.base import BaseEmailBackend
|
|
11
11
|
from ..message import sanitize_address
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|