https://github.com/nikhiljohn10/django-google-mailer
Django Google Mailer is a Django package which uses Gmail API to send emails to users as an administrator.
https://github.com/nikhiljohn10/django-google-mailer
django email gmail-api package python
Last synced: 8 months ago
JSON representation
Django Google Mailer is a Django package which uses Gmail API to send emails to users as an administrator.
- Host: GitHub
- URL: https://github.com/nikhiljohn10/django-google-mailer
- Owner: nikhiljohn10
- License: mit
- Created: 2020-11-03T22:28:52.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-10T08:07:16.000Z (over 5 years ago)
- Last Synced: 2025-05-31T13:19:50.105Z (9 months ago)
- Topics: django, email, gmail-api, package, python
- Language: Python
- Homepage: https://django-google-mailer.readthedocs.io/
- Size: 87.9 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Django Google Mailer
[](https://travis-ci.com/nikhiljohn10/django-google-mailer)
[](https://django-google-mailer.readthedocs.io/en/stable/?badge=stable)


[](https://pypi.org/project/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
```