项目作者: nikhiljohn10

项目描述 :
Django Google Mailer is a Django package which uses Gmail API to send emails to users as an administrator.
高级语言: Python
项目地址: git://github.com/nikhiljohn10/django-google-mailer.git
创建时间: 2020-11-03T22:28:52Z
项目社区:https://github.com/nikhiljohn10/django-google-mailer

开源协议:MIT License

下载


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

  1. make
  2. . venv/bin/activate
  3. make setup
  4. make run

Testing

  1. django-admin startproject mysite && cd mysite
  2. python3 -m venv venv && . venv/bin/activate
  3. pip install django
  4. pip install ../django-google-mailer/dist/django-google-mailer-0.1.tar.gz
  5. echo "urlpatterns += [path('gmailer/', include('gmailer.urls')),]" >> mysite/urls.py
  6. python manage.py makemigrations && python manage.py migrate
  7. python manage.py runserver localhost:8000