Skip to content

Commit 1e1c264

Browse files
committed
0.0.1.dev1
1 parent 075256b commit 1e1c264

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

doc/description/email/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22

33
this is a simple email sending program, providing two ways: SMTP and SMTP SSL abstract modules with dev version.
44

5-
- [. preconditions](#-preconditions)
6-
- [. the email config](#-the-email-config)
5+
- [One. preconditions](#one-preconditions)
6+
- [Two. the email config](#two-the-email-config)
77
- [2.1 smtp config](#21-smtp-config)
88
- [2.2 smtp ssl config](#22-smtp-ssl-config)
9-
- [. usage](#-usage)
10-
- [. explain](#-explain)
9+
- [Three. usage](#three-usage)
10+
- [Four. explain](#four-explain)
1111

12-
## . preconditions
12+
## One. preconditions
1313

1414
- only plain text email is supported
1515

16-
## . the email config
16+
## Two. the email config
1717

1818
the please create a new `conf` folder in the current project directory, Then create a new `email_config.cfg` or `email_ssl_config.cfg` file
1919

@@ -84,7 +84,7 @@ mail_receiver = [email protected]
8484
receiver_alias = receiver_alias
8585
```
8686

87-
## . usage
87+
## Three. usage
8888

8989
```python
9090
# -*- coding:utf-8 -*-
@@ -106,6 +106,6 @@ email.sendmail()
106106
email.quit()
107107
```
108108

109-
## . explain
109+
## Four. explain
110110

111111
since it is only a `development version`, `only text mode` is provided at present, and the attachment of multimedia mode is supported in the future

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def read_text(file_name):
6565
# | 21 | DVSNIER_PROJECT_URLS | dict | | 项目 URL | |
6666
# | 22 | | | | | |
6767
DVSNIER_NAME = 'com.dvsnier.email' # Required
68-
DVSNIER_VERSION = '0.0.1.dev0' # Required
68+
DVSNIER_VERSION = '0.0.1.dev1' # Required
6969
DVSNIER_DESCRIPTOIN = 'this is dvsnier email.' # Optional
7070
# Get the long description from the README file
7171
DVSNIER_LONG_DESCRIPTOIN = read_text(str(PROJECT_DESCRIPTION)) # Optional

0 commit comments

Comments
 (0)