1
0

METADATA 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. Metadata-Version: 2.0
  2. Name: django-templated-mail
  3. Version: 1.1.1
  4. Summary: Send emails using Django template system.
  5. Home-page: https://github.com/sunscrapers/django-templated-mail
  6. Author: Sunscrapers
  7. Author-email: info@sunscrapers.com
  8. License: MIT
  9. Description-Content-Type: UNKNOWN
  10. Platform: UNKNOWN
  11. Classifier: Development Status :: 5 - Production/Stable
  12. Classifier: Framework :: Django :: 1.8
  13. Classifier: Framework :: Django :: 1.11
  14. Classifier: Framework :: Django :: 2.0
  15. Classifier: Intended Audience :: Developers
  16. Classifier: License :: OSI Approved :: MIT License
  17. Classifier: Operating System :: OS Independent
  18. Classifier: Programming Language :: Python
  19. Classifier: Programming Language :: Python :: 2.7
  20. Classifier: Programming Language :: Python :: 3.4
  21. Classifier: Programming Language :: Python :: 3.5
  22. Classifier: Programming Language :: Python :: 3.6
  23. =====================
  24. django-templated-mail
  25. =====================
  26. .. image:: https://img.shields.io/pypi/v/django-templated-mail.svg
  27. :target: https://pypi.org/project/django-templated-mail
  28. .. image:: https://img.shields.io/travis/sunscrapers/django-templated-mail.svg
  29. :target: https://travis-ci.org/sunscrapers/django-templated-mail
  30. .. image:: https://img.shields.io/codecov/c/github/sunscrapers/django-templated-mail.svg
  31. :target: https://codecov.io/gh/sunscrapers/django-templated-mail
  32. .. image:: https://img.shields.io/scrutinizer/g/sunscrapers/django-templated-mail.svg
  33. :target: https://scrutinizer-ci.com/g/sunscrapers/django-templated-mail
  34. A simple wrapper for ``django.core.mail.EmailMultiAlternatives`` which makes
  35. use of Django template system to store email content in separate file.
  36. Developed by `SUNSCRAPERS <http://sunscrapers.com/>`_ with passion & patience.
  37. Installation
  38. ============
  39. Simply install using ``pip``:
  40. .. code-block:: bash
  41. $ pip install -U django-templated-mail
  42. Documentation
  43. =============
  44. Documentation is available to study at
  45. `http://django-templated-mail.readthedocs.io <http://django-templated-mail.readthedocs.io>`_
  46. and in ``docs`` directory.
  47. Contributing and development
  48. ============================
  49. To start developing on **django-templated-mail**, clone the repository:
  50. .. code-block:: bash
  51. $ git clone git@github.com:sunscrapers/django-templated-mail.git
  52. If you are a **pipenv** user you can quickly setup testing environment by
  53. using Make commands:
  54. .. code-block:: bash
  55. $ make init
  56. $ make test