Metadata-Version: 2.1
Name: smtpapi
Version: 0.4.1
Summary: Simple wrapper to use SendGrid SMTP API
Home-page: https://github.com/sendgrid/smtpapi-python/
Author: Yamil Asusta, Kane Kim
Author-email: yamil@sendgrid.com, kane.isturm@sendgrid.com
License: MIT License
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5

.. image:: https://uiux.s3.amazonaws.com/2016-logos/email-logo%402x.png
   :target: https://www.sendgrid.com
   :alt: SendGrid Logo

|Travis Badge| |Email Notifications Badge| |Twitter Follow| |Codecov branch| |Python Versions| |PyPI Version| |GitHub contributors| |MIT Licensed|

**This module helps build SendGrid's SMTP API headers.**

Learn more about the SMTP API at `SendGrid documentation`_.

Announcements
=============

All updates to this module is documented in our `CHANGELOG`_.

Table of Contents
=================

-  `Installation <#installation>`__
-  `Quick Start <#quick-start>`__
-  `Usage <#usage>`__
-  `Roadmap <#roadmap>`__
-  `How to Contribute <#how-to-contribute>`__
-  `Local Setup of the Project <#local-setup-of-the-project>`__
-  `About <#about>`__
-  `License <#license>`__

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

Prerequisites
-------------

-  Python version 2.7, 3.4, 3.5, or 3.6
-  The SendGrid service, starting at the `free level`_

Install Package
---------------

.. code:: bash

    pip install smtpapi

Setup Environment Variables
---------------------------

Update the development environment with your `SENDGRID_API_KEY`_, for example:

.. code:: bash

    cp .env_sample .env

In ``.env`` set ``SENDGRID_API_KEY`` to your own API key.

You can add your environment variables to your environment by sourcing the file:

.. code:: bash

    source .env

Quick Start
===========

.. code:: python

    from smtpapi import SMTPAPIHeader

    header = SMTPAPIHeader()
    header.add_to('email@email.com')
    print(header.json_string())

Usage
=====

- `SendGrid documentation`_
- `Example Code`_

Roadmap
=======

If you are interested in the future direction of this project, please take a look at our `milestones`_.
We would love to hear your feedback.

How to Contribute
=================

We encourage contribution to our projects, please see our `CONTRIBUTING`_ guide for details.

Quick links:

-  `Feature Request`_
-  `Bug Reports`_
-  `Sign the CLA to Create a Pull Request`_
-  `Improvements to the Codebase`_

Local Setup of the Project
==========================

The simplest local development workflow is by using docker.

Steps:

1. Install Docker
2. Run ``docker-compose build`` (this builds the container)
3. Run ``docker-compose up`` (this runs tests by default)

About
=====

**smtpapi-python** is guided and supported by the SendGrid `Developer Experience Team`_.

**smtpapi-python** is maintained and funded by SendGrid, Inc.
The names and logos for **smtpapi-python** are trademarks of SendGrid, Inc.

License
=======

`The MIT License (MIT)`_

.. _SendGrid documentation: https://sendgrid.com/docs/API_Reference/SMTP_API/index.html
.. _CHANGELOG: https://github.com/sendgrid/smtpapi-python/blob/master/CHANGELOG.md
.. _free level: https://sendgrid.com/free?source=sendgrid-python
.. _SENDGRID_API_KEY: https://app.sendgrid.com/settings/api_keys
.. _Example Code: https://github.com/sendgrid/smtpapi-python/tree/master/examples
.. _milestones: https://github.com/sendgrid/smtpapi-python/milestones
.. _CONTRIBUTING: https://github.com/sendgrid/smtpapi-python/blob/master/CONTRIBUTING.md
.. _Feature Request: https://github.com/sendgrid/smtpapi-python/blob/master/CONTRIBUTING.md#feature-request
.. _Bug Reports: https://github.com/sendgrid/smtpapi-python/blob/master/CONTRIBUTING.md#submit-a-bug-report
.. _Sign the CLA to Create a Pull Request: https://github.com/sendgrid/smtpapi-python/blob/master/CONTRIBUTING.md#cla
.. _Improvements to the Codebase: https://github.com/sendgrid/smtpapi-python/blob/master/CONTRIBUTING.md#improvements-to-the-codebase
.. _Developer Experience Team: mailto:dx@sendgrid.com
.. _The MIT License (MIT): https://github.com/sendgrid/smtpapi-python/blob/master/LICENSE.md

.. |Travis Badge| image:: https://travis-ci.org/sendgrid/smtpapi-python.svg?branch=master
   :target: https://travis-ci.org/sendgrid/smtpapi-python
.. |Email Notifications Badge| image:: https://dx.sendgrid.com/badge/python
   :target: https://dx.sendgrid.com/newsletter/python
.. |Twitter Follow| image:: https://img.shields.io/twitter/follow/sendgrid.svg?style=social&label=Follow
   :target: https://twitter.com/sendgrid
.. |Codecov branch| image:: https://img.shields.io/codecov/c/github/sendgrid/smtpapi-python/master.svg?style=flat-square&label=Codecov+Coverage
   :target: https://codecov.io/gh/sendgrid/smtpapi-python
.. |Python Versions| image:: https://img.shields.io/pypi/pyversions/smtpapi.svg
   :target: https://pypi.org/project/smtpapi/
.. |PyPI Version| image:: https://img.shields.io/pypi/v/smtpapi.svg
   :target: https://pypi.org/project/smtpapi/
.. |GitHub contributors| image:: https://img.shields.io/github/contributors/sendgrid/smtpapi-python.svg
   :target: https://github.com/sendgrid/smtpapi-python/graphs/contributors
.. |MIT Licensed| image:: https://img.shields.io/badge/license-MIT-blue.svg
   :target: https://github.com/sendgrid/smtpapi-python/blob/master/LICENSE.md


