Metadata-Version: 2.0
Name: django-fs-email-helper
Version: 0.3
Summary: The Django-related reusable app provides the ability to send multipart emails and store them in a database.
Home-page: https://bitbucket.org/fogstream/django-fs-email-helper
Author: Yuri Lya
Author-email: yuri.lya@fogstream.ru
License: The MIT License (MIT)
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
Requires-Dist: html2text

Introduction
============

django-fs-email-helper is the Django-related reusable app provides the ability to send multipart emails and store them in a database.

The distinctive feature of this app is storing sent emails in database. It means that you have ability to check each sent email from admin interface.


Installation
============

1. Install ``django-fs-email-helper`` using ``pip``::

    $ pip install django-fs-email-helper

2. Add ``'email_helper'`` to your ``INSTALLED_APPS`` setting::

    INSTALLED_APPS = (
        ...
        'email_helper',
        ...
    )

3. Run ``syncdb`` or ``migrate``::

    $ ./manage.py syncdb

    or

    $ ./manage.py migrate


Usage
=====

Just import ``send_email`` function and use it::

    from email_helper import send_email

    send_email('from_email@example.com', 'to_email@example.com', 'email_helper/email_template.html', {})

    send_email('from_email@example.com', ['to_email_1@example.com', 'to_email_2@example.com'], 'email_helper/email_template.html', {})


Credits
=======

`Fogstream <http://fogstream.ru>`_


