Skip to content

Commit

Permalink
0.0.1.dev1
Browse files Browse the repository at this point in the history
  • Loading branch information
DovSnier committed Jun 25, 2021
1 parent 075256b commit 1e1c264
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions doc/description/email/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

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

- [. preconditions](#-preconditions)
- [. the email config](#-the-email-config)
- [One. preconditions](#one-preconditions)
- [Two. the email config](#two-the-email-config)
- [2.1 smtp config](#21-smtp-config)
- [2.2 smtp ssl config](#22-smtp-ssl-config)
- [. usage](#-usage)
- [. explain](#-explain)
- [Three. usage](#three-usage)
- [Four. explain](#four-explain)

## . preconditions
## One. preconditions

- only plain text email is supported

## . the email config
## Two. the email config

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

Expand Down Expand Up @@ -84,7 +84,7 @@ mail_receiver = yyy@163.com
receiver_alias = receiver_alias
```

## . usage
## Three. usage

```python
# -*- coding:utf-8 -*-
Expand All @@ -106,6 +106,6 @@ email.sendmail()
email.quit()
```

## . explain
## Four. explain

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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def read_text(file_name):
# | 21 | DVSNIER_PROJECT_URLS | dict | | 项目 URL | |
# | 22 | | | | | |
DVSNIER_NAME = 'com.dvsnier.email' # Required
DVSNIER_VERSION = '0.0.1.dev0' # Required
DVSNIER_VERSION = '0.0.1.dev1' # Required
DVSNIER_DESCRIPTOIN = 'this is dvsnier email.' # Optional
# Get the long description from the README file
DVSNIER_LONG_DESCRIPTOIN = read_text(str(PROJECT_DESCRIPTION)) # Optional
Expand Down

0 comments on commit 1e1c264

Please sign in to comment.