Metadata-Version: 2.1
Name: simple-email
Version: 0.0.3
Summary: 开箱即用的邮件发送包
Home-page: https://github.com/fanfan531/simple-email
Author: ken
Author-email: 596600794@qq.com
License: MIT
Platform: UNKNOWN
Classifier: Programming Language :: Python :: Implementation :: PyPy
Description-Content-Type: text/markdown
Provides-Extra: test

# simple-email
简易的发送邮件脚本,通过封装,可以发送带附件的邮件.

demo
```
1.填写邮箱配置
    host = 'xx.xx.xx.xx'
    port = 110
    user = ''
    pass_ = ''
2.填写邮件配置
    title = ''
    body = ''
    attachment = ['']
    sender = ''
    to = ['']
    cc = []
3.发送邮件
    s = SenEmail(host=host,port=port,user=user,pass_=pass_)

    s.send_email(title=title, body=body, attachment=attachment, sender=sender, to=to, cc=cc)

```

