Postmark library for python 2 and 3. Built on top of the requests library.

xsleonard xsleonard Last update: Aug 17, 2022

pystmark

PyPI versionBuild StatusCoverage Status

Postmark API library for python 2.7, 3.6 and pypy.Built on top of the requests library.

Web Framework Integration

Documentation

The full Sphinx-compiled documentation is available here: https://readthedocs.org/docs/pystmark/en/latest/

Example Usage

from pystmark import (    Message,    send,    send_with_template,    send_batch,    send_batch_with_templates,    UnauthorizedError)API_KEY = 'my_api_key'SENDER = '[email protected]'# Send a single messagemessage = Message(    sender=SENDER,    to='[email protected]',    subject='Hi',    text='A message',    tag='greeting')response = send(message, api_key=API_KEY)# Send a template messagemodel = {    'user_name': 'John Smith',    'company': {      'name': 'ACME'    }message = Message(    sender=SENDER,    to='[email protected]',    template_id=11111,    template_model=model,    tag='welcome',)response = send_with_template(message, api_key=API_KEY)# Send multiple messagesmessages = [    Message(        sender=SENDER,        to='[email protected]',        subject='Hi',        text='A message',        tag='greeting',        message_stream='broadcasts',    )]response = send_batch(messages, api_key=API_KEY)# Send multiple messages with templatesmessages = [    Message(        sender=SENDER,        to='[email protected]',        template_id=11111,        template_model=model,        tag='greeting',        message_stream='broadcasts',    )]response = send_batch_with_templates(messages, api_key=API_KEY)# Check API response errortry:    response.raise_for_status()except UnauthorizedError:    print 'Use your real API key'# Check for errors in each message when sending batch emails:for m in response.messages:    if m.error_code > 0:        print m.message

Contribution

  1. Fork this repo
  2. Make your changes and write a test for them
  3. Add yourself to the AUTHORS.md file and submit a pull request

Please run the tests with ./setup.py test --with-integration, with at least python2.7,before you make a pull request. Requirements for running the tests are in tests/requirements.txt.The other versions will be handled by travis-ci.

The pep8 tests may fail if using pypy due to this bug,so that test is disabled if pypy is detected.

Copyright and License

pystmark is licensed under the MIT license. See the LICENSE file for full details.

Subscribe to our newsletter