emailz-使发送邮件更方便

emailz

easy use for send emails

Install

pip install emailz

Simple Use

from emailz import email

email.config(user='ivan-me@163.com',password='***')
email.send(subject='Test', body='hi,
,it's a test',receivers=['han_zhichao@sina.cn'])

Use HTML

email.send(subject='Test', html='<h2>hi,it's a test</h2>',receivers=['han_zhichao@sina.cn'])

Use Template file

email.send(subject='Test', template='tpl.html',receivers=['han_zhichao@sina.cn'])

With attachments

email.send(subject='Test', attachments=['tpl.html'],receivers=['han_zhichao@sina.cn'])

ToDo

  • Smtp Server mapping
  • @email decorators
  • trigger, crontab or more features
  • theme and templates to choose
原文地址:https://www.cnblogs.com/superhin/p/12737953.html