Metadata-Version: 2.1
Name: asphalt-mailer
Version: 3.0.3
Summary: Mailer component for the Asphalt framework
Home-page: https://github.com/asphalt-framework/asphalt-mailer
Author: Alex Grönholm
Author-email: alex.gronholm@nextday.fi
License: Apache License 2.0
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Topic :: Communications :: Email
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Dist: asphalt (<5.0,>=3.0)
Requires-Dist: aiosmtplib (~=1.0)
Requires-Dist: typeguard (~=2.0)
Provides-Extra: doc
Requires-Dist: Sphinx (>=1.5) ; extra == 'doc'
Requires-Dist: sphinx-rtd-theme ; extra == 'doc'
Requires-Dist: sphinx-autodoc-typehints (>=1.0.5) ; extra == 'doc'
Requires-Dist: sphinxcontrib-asyncio (>=0.2.0) ; extra == 'doc'
Provides-Extra: test
Requires-Dist: aiosmtpd ; extra == 'test'
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'
Requires-Dist: pytest-asyncio (>=0.5.0) ; extra == 'test'

.. image:: https://travis-ci.org/asphalt-framework/asphalt-mailer.svg?branch=master
  :target: https://travis-ci.org/asphalt-framework/asphalt-mailer
  :alt: Build Status
.. image:: https://coveralls.io/repos/github/asphalt-framework/asphalt-mailer/badge.svg?branch=master
  :target: https://coveralls.io/github/asphalt-framework/asphalt-mailer?branch=master
  :alt: Code Coverage

This Asphalt framework component provides a means for sending email from Asphalt applications.

Three mechanisms are currently supported:

* `SMTP <https://en.wikipedia.org/wiki/SMTP>`_ (using `aiosmtplib`_)
* `Sendmail <https://en.wikipedia.org/wiki/Sendmail>`_
* Mock (just stores sent mails; useful for testing applications)

Third party libraries may provide additional backends.

.. _aiosmtplib: https://github.com/cole/aiosmtplib

Project links
-------------

* `Documentation <http://asphalt-mailer.readthedocs.org/en/latest/>`_
* `Help and support <https://github.com/asphalt-framework/asphalt/wiki/Help-and-support>`_
* `Source code <https://github.com/asphalt-framework/asphalt-mailer>`_
* `Issue tracker <https://github.com/asphalt-framework/asphalt-mailer/issues>`_


