Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/stranger6667/flask-postmark

Postmark Flask extension
https://github.com/stranger6667/flask-postmark

email flask postmark

Last synced: 1 day ago
JSON representation

Postmark Flask extension

Awesome Lists containing this project

README

        

Flask Postmark
==============

|Build| |Coverage| |Version| |Python versions| |Docs| |License|

This is a simple integration with `Postmark `_ for Flask applications.

Installation
------------

Installing is simple with pip::

$ pip install flask-postmark

Usage
-----

To send an email in your Flask application:

.. code-block:: python

from flask import Flask
from flask_postmark import Postmark

app = Flask(__name__)
app.config["POSTMARK_SERVER_TOKEN"] = ""

postmark = Postmark(app)

@app.route("/send", methods=["POST"])
def send():
postmark.send(
From="[email protected]",
To="[email protected]",
Subject="Postmark test",
HtmlBody="Hello dear Postmark user.",
)
return b"OK"

Documentation
=============

You can view the documentation online at:

- https://flask-postmark.readthedocs.io/en/latest/

Or you can look at the docs/ directory in the repository.

.. |Build| image:: https://github.com/Stranger6667/flask-postmark/workflows/build/badge.svg
:target: https://github.com/Stranger6667/flask-postmark/actions
.. |Coverage| image:: https://codecov.io/github/Stranger6667/flask-postmark/coverage.svg?branch=master
:target: https://codecov.io/github/Stranger6667/flask-postmark?branch=master
.. |Version| image:: https://img.shields.io/pypi/v/flask-postmark.svg
:target: https://pypi.org/project/flask-postmark/
.. |Python versions| image:: https://img.shields.io/pypi/pyversions/flask-postmark.svg
:target: https://pypi.org/project/flask-postmark/
.. |Docs| image:: https://readthedocs.org/projects/flask-postmark/badge/?version=stable
:target: https://flask-postmark.readthedocs.io/en/stable/
:alt: Documentation Status
.. |License| image:: https://img.shields.io/pypi/l/flask-postmark.svg
:target: https://opensource.org/licenses/MIT