Metadata-Version: 2.1
Name: django-google-mailer
Version: 0.3.1
Summary: Django Package which enable Gmail API to send email inside your project
Home-page: https://github.com/nikhiljohn10/django-google-mailer
Author: Nikhil John
Author-email: me@nikz.in
License: MIT
Project-URL: Documentation, https://django-google-mailer.readthedocs.io/
Project-URL: Changelog, https://django-google-mailer.readthedocs.io/en/latest/change.html
Keywords: Django,Package,Gmail,API,email,OAuth,Google
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.0
Classifier: Framework :: Django :: 3.1
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: Django (>=3.1.3)
Requires-Dist: google-api-python-client (>=1.12.5)
Requires-Dist: google-auth-oauthlib (>=0.4.2)

# Django Google Mailer

[![Build Status](https://travis-ci.com/nikhiljohn10/django-google-mailer.svg?branch=main)](https://travis-ci.com/nikhiljohn10/django-google-mailer)
[![Documentation Status](https://readthedocs.org/projects/django-google-mailer/badge/?version=stable)](https://django-google-mailer.readthedocs.io/en/stable/?badge=stable)
![GitHub release](https://img.shields.io/github/v/release/nikhiljohn10/django-google-mailer)
![PyPI - Status](https://img.shields.io/pypi/status/django-google-mailer)
[![PyPI](https://img.shields.io/pypi/v/django-google-mailer)](https://pypi.org/project/django-google-mailer)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/django-google-mailer)
![PyPI - Django Version](https://img.shields.io/pypi/djversions/django-google-mailer)
![PyPI - Downloads](https://img.shields.io/pypi/dm/django-google-mailer)
![PyPI - License](https://img.shields.io/pypi/l/django-google-mailer)

Django Google Mailer is a Django package which uses Gmail API to send emails to users as an administrator.

### Developing

```
make
. venv/bin/activate
make setup
make run
```

### Testing

```
django-admin startproject mysite && cd mysite
python3 -m venv venv && . venv/bin/activate

pip install django
pip install ../django-google-mailer/dist/django-google-mailer-0.1.tar.gz

echo "urlpatterns += [path('gmailer/', include('gmailer.urls')),]" >> mysite/urls.py

python manage.py makemigrations && python manage.py migrate
python manage.py runserver localhost:8000
```


