Email Easy: easy use for sending emails
pip install emailz
from emailz import email
email.config(user='[email protected]',password='***')
email.send(subject='Test', body='hi,\n,it is a test',receivers=['[email protected]'])
email.send(subject='Test', html='<h2>hi,it is a test</h2>',receivers=['[email protected]'])
email.send(subject='Test', template='tpl.html',receivers=['[email protected]'])
email.send(subject='Test', attachments=['tpl.html'],receivers=['[email protected]'])
- Smtp Server mapping
- @email decorators
- trigger, crontab or more features
- theme and templates to choose