django-google-mailer

Django Package which enable Gmail API to send email inside your project


Keywords
Django, Package, Gmail, API, email, OAuth, Google, gmail-api, python
License
MIT
Install
pip install django-google-mailer==0.3.1

Documentation

Django Google Mailer

Build Status Documentation Status GitHub release PyPI - Status PyPI PyPI - Python Version PyPI - Django Version PyPI - Downloads PyPI - License

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