plain.email 0.10.2__tar.gz → 0.11.0__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.2 → plain_email-0.11.0}/.gitignore +2 -3
- plain_email-0.11.0/PKG-INFO +34 -0
- plain_email-0.11.0/plain/email/CHANGELOG.md +23 -0
- plain_email-0.11.0/plain/email/README.md +23 -0
- {plain_email-0.10.2 → plain_email-0.11.0}/pyproject.toml +3 -3
- plain_email-0.10.2/PKG-INFO +0 -26
- plain_email-0.10.2/plain/email/CHANGELOG.md +0 -11
- plain_email-0.10.2/plain/email/README.md +0 -15
- {plain_email-0.10.2 → plain_email-0.11.0}/LICENSE +0 -0
- {plain_email-0.10.2 → plain_email-0.11.0}/README.md +0 -0
- {plain_email-0.10.2 → plain_email-0.11.0}/plain/email/__init__.py +0 -0
- {plain_email-0.10.2 → plain_email-0.11.0}/plain/email/backends/__init__.py +0 -0
- {plain_email-0.10.2 → plain_email-0.11.0}/plain/email/backends/base.py +0 -0
- {plain_email-0.10.2 → plain_email-0.11.0}/plain/email/backends/console.py +0 -0
- {plain_email-0.10.2 → plain_email-0.11.0}/plain/email/backends/filebased.py +0 -0
- {plain_email-0.10.2 → plain_email-0.11.0}/plain/email/backends/smtp.py +0 -0
- {plain_email-0.10.2 → plain_email-0.11.0}/plain/email/default_settings.py +0 -0
- {plain_email-0.10.2 → plain_email-0.11.0}/plain/email/message.py +0 -0
- {plain_email-0.10.2 → plain_email-0.11.0}/plain/email/utils.py +0 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: plain.email
|
|
3
|
+
Version: 0.11.0
|
|
4
|
+
Summary: Everything you need to send email in Plain.
|
|
5
|
+
Author-email: Dave Gaeddert <dave.gaeddert@dropseed.dev>
|
|
6
|
+
License-Expression: BSD-3-Clause
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Requires-Python: >=3.13
|
|
9
|
+
Requires-Dist: plain<1.0.0
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# plain.email
|
|
13
|
+
|
|
14
|
+
**Everything you need to send email in Plain.**
|
|
15
|
+
|
|
16
|
+
- [Installation](#installation)
|
|
17
|
+
|
|
18
|
+
## Installation
|
|
19
|
+
|
|
20
|
+
Install the `plain.email` package from [PyPI](https://pypi.org/project/plain.email/):
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
uv add plain.email
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
Add `plain.email` to your `INSTALLED_PACKAGES`:
|
|
27
|
+
|
|
28
|
+
```python
|
|
29
|
+
# settings.py
|
|
30
|
+
INSTALLED_PACKAGES = [
|
|
31
|
+
# ...
|
|
32
|
+
"plain.email",
|
|
33
|
+
]
|
|
34
|
+
```
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# plain-email changelog
|
|
2
|
+
|
|
3
|
+
## [0.11.0](https://github.com/dropseed/plain/releases/plain-email@0.11.0) (2025-09-19)
|
|
4
|
+
|
|
5
|
+
### What's changed
|
|
6
|
+
|
|
7
|
+
- Updated Python minimum requirement to 3.13 ([d86e307](https://github.com/dropseed/plain/commit/d86e307))
|
|
8
|
+
- Improved README with installation instructions and table of contents ([4ebecd1](https://github.com/dropseed/plain/commit/4ebecd1))
|
|
9
|
+
- Updated package description to "Everything you need to send email in Plain" ([4ebecd1](https://github.com/dropseed/plain/commit/4ebecd1))
|
|
10
|
+
|
|
11
|
+
### Upgrade instructions
|
|
12
|
+
|
|
13
|
+
- Update your Python version to 3.13 or higher
|
|
14
|
+
|
|
15
|
+
## [0.10.2](https://github.com/dropseed/plain/releases/plain-email@0.10.2) (2025-06-23)
|
|
16
|
+
|
|
17
|
+
### What's changed
|
|
18
|
+
|
|
19
|
+
- No user-facing changes. Internal documentation and tooling updates only ([82710c3](https://github.com/dropseed/plain/commit/82710c3), [9a1963d](https://github.com/dropseed/plain/commit/9a1963d), [e1f5dd3](https://github.com/dropseed/plain/commit/e1f5dd3)).
|
|
20
|
+
|
|
21
|
+
### Upgrade instructions
|
|
22
|
+
|
|
23
|
+
- No changes required
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# plain.email
|
|
2
|
+
|
|
3
|
+
**Everything you need to send email in Plain.**
|
|
4
|
+
|
|
5
|
+
- [Installation](#installation)
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
Install the `plain.email` package from [PyPI](https://pypi.org/project/plain.email/):
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
uv add plain.email
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
Add `plain.email` to your `INSTALLED_PACKAGES`:
|
|
16
|
+
|
|
17
|
+
```python
|
|
18
|
+
# settings.py
|
|
19
|
+
INSTALLED_PACKAGES = [
|
|
20
|
+
# ...
|
|
21
|
+
"plain.email",
|
|
22
|
+
]
|
|
23
|
+
```
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "plain.email"
|
|
3
|
-
version = "0.
|
|
4
|
-
description = "
|
|
3
|
+
version = "0.11.0"
|
|
4
|
+
description = "Everything you need to send email in Plain."
|
|
5
5
|
authors = [{name = "Dave Gaeddert", email = "dave.gaeddert@dropseed.dev"}]
|
|
6
6
|
license = "BSD-3-Clause"
|
|
7
7
|
readme = "README.md"
|
|
8
|
-
requires-python = ">=3.
|
|
8
|
+
requires-python = ">=3.13"
|
|
9
9
|
dependencies = [
|
|
10
10
|
"plain<1.0.0",
|
|
11
11
|
]
|
plain_email-0.10.2/PKG-INFO
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: plain.email
|
|
3
|
-
Version: 0.10.2
|
|
4
|
-
Summary: Email sending for Plain.
|
|
5
|
-
Author-email: Dave Gaeddert <dave.gaeddert@dropseed.dev>
|
|
6
|
-
License-Expression: BSD-3-Clause
|
|
7
|
-
License-File: LICENSE
|
|
8
|
-
Requires-Python: >=3.11
|
|
9
|
-
Requires-Dist: plain<1.0.0
|
|
10
|
-
Description-Content-Type: text/markdown
|
|
11
|
-
|
|
12
|
-
# plain.email
|
|
13
|
-
|
|
14
|
-
Everything you need to send email.
|
|
15
|
-
|
|
16
|
-
## Installation
|
|
17
|
-
|
|
18
|
-
Add `plain.email` to your `INSTALLED_APPS`:
|
|
19
|
-
|
|
20
|
-
```python
|
|
21
|
-
# settings.py
|
|
22
|
-
INSTALLED_APPS = [
|
|
23
|
-
# ...
|
|
24
|
-
'plain.email',
|
|
25
|
-
]
|
|
26
|
-
```
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
# plain-email changelog
|
|
2
|
-
|
|
3
|
-
## [0.10.2](https://github.com/dropseed/plain/releases/plain-email@0.10.2) (2025-06-23)
|
|
4
|
-
|
|
5
|
-
### What's changed
|
|
6
|
-
|
|
7
|
-
- No user-facing changes. Internal documentation and tooling updates only ([82710c3](https://github.com/dropseed/plain/commit/82710c3), [9a1963d](https://github.com/dropseed/plain/commit/9a1963d), [e1f5dd3](https://github.com/dropseed/plain/commit/e1f5dd3)).
|
|
8
|
-
|
|
9
|
-
### Upgrade instructions
|
|
10
|
-
|
|
11
|
-
- No changes required
|
|
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
|