https://github.com/codesyntax/cs.htmlmailer
https://github.com/codesyntax/cs.htmlmailer
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/codesyntax/cs.htmlmailer
- Owner: codesyntax
- Created: 2012-03-22T07:11:01.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2023-04-26T07:58:24.000Z (about 3 years ago)
- Last Synced: 2025-03-09T22:51:19.754Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
Awesome Lists containing this project
README
Introduction
============
This small library has a method to create a MIME Multipart email object
with HTML and Text content to be able to send it by e-mail.
This allows you to prepare an HTML content (with a templating language)
and forget about the text representation of the HTML; just import the
method and call it with the HTML content and the e-mail headers (to, cc,
subject, ...)
This is the signature of the method::
def create_html_mail(subject, html, text=None, from_addr=None, to_addr=None,
cc_addrs=[], headers=None, encoding='UTF-8'):