Metadata-Version: 2.1
Name: promail
Version: 0.4.0
Summary: The Python Email Automation Framework
Home-page: https://github.com/trafire/promail
License: GNU
Keywords: promail,email,automation
Author: Antoine Wood
Author-email: antoinewood@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: google-api-core (>=2.8.0,<3.0.0)
Requires-Dist: google-api-python-client (>=2.47.0,<3.0.0)
Requires-Dist: google-auth (>=2.6.6,<3.0.0)
Requires-Dist: google-auth-httplib2 (>=0.1.0,<0.2.0)
Requires-Dist: google-auth-oauthlib (>=0.5.1,<0.6.0)
Requires-Dist: importlib-metadata (>=4.11.3,<5.0.0); python_version < "3.8"
Requires-Dist: nox (>=2022.1.7,<2023.0.0)
Requires-Dist: python-dotenv (>=0.1.0,<0.2.0)
Requires-Dist: requests (>=2.27.1,<3.0.0)
Requires-Dist: tabulate (>=0.8.9,<0.9.0)
Project-URL: Repository, https://github.com/trafire/promail
Description-Content-Type: text/markdown

[![Tests](https://github.com/trafire/promail/workflows/Tests/badge.svg)](https://github.com/trafire/promail/actions?workflow=Tests)
[![Codecov](https://codecov.io/gh/trafire/promail/branch/master/graph/badge.svg)](https://codecov.io/gh/trafire/promail)
[![PyPI](https://img.shields.io/pypi/v/promail.svg)](https://pypi.org/project/promail/)
# Promail

Promail along with its sister library Promail-Templates aims 
to close the email gap between what you as an individual can make your
email do with little effort and what enterprise users do

- Automated Professional Rich content HTML emails
- Allow you to write your own pluggins that do arbitrary things depending on the content of the email.

## Installation
```
pip install promail
```
## Simple Usage

```python

client = GmailClient("your-gmail@gmail.com")
# The first time you do this it will open a web browser allowing you to sign into your google account directly
client.send_email()

```

