lavr / python-emails

Modern python library for emails

Home Page:http://python-emails.readthedocs.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

python-emails

Modern python library for email.

Build message:

>>> import emails
>>> message = emails.html(html="<p>Hi!<br>Here is your receipt...",
                       subject="Your receipt No. 567098123",
                       mail_from=('Some Store', 'store@somestore.com'))
>>> message.attach(data=open('bill.pdf', 'rb'), filename='bill.pdf')

send message and get response from smtp server:

>>> r = message.send(to='s@lavr.me', smtp={'host': 'aspmx.l.google.com', 'timeout': 5})
>>> assert r.status_code == 250

and more:

  • DKIM signature
  • Render body from template
  • Flask extension and Django integration
  • Message body transformation methods
  • Load message from url or from file

Documentation: python-emails.readthedocs.org

Flask extension: flask-emails



https://github.com/lavr/python-emails/workflows/Tests/badge.svg?branch=master https://coveralls.io/repos/lavr/python-emails/badge.svg?branch=master

About

Modern python library for emails

http://python-emails.readthedocs.org

License:Other


Languages

Language:Python 93.2%Language:HTML 6.7%Language:Makefile 0.1%Language:CSS 0.0%