Send emails via a GSuite Service-account.
Project description
GSuite Email Backend
This package allows to use Django's send_mail
command to send emails through GSuite account.
It requires a serviceaccount credential created in Google coud console,
The crendential file need to have https://www.googleapis.com/auth/gmail.send
scope.
Follow this tutorial to create the credentials file, make sure to add https://www.googleapis.com/auth/gmail.send
scope.
Installation
pip install django-gsuite-email
Quick start
1. Add it to installed apps in setings.py
INSTALLED_APPS = [
...
'django_gsuite_email',
...
]
2. Set the Email EMAIL_BACKEND setting
EMAIL_BACKEND = 'django_gsuite_email.GSuiteEmailBackend'
3. Set location of credentials file.
To do this, either set GSUITE_CREDENTIALS_FILE
environment variable.
OR
set GSUITE_CREDENTIALS_FILE
in settings.py
GSUITE_CREDENTIALS_FILE="/path/to/credentials/file.json"
GSUITE_USER_FROM_EMAIL = False # use the user of from_email if True. Default value False.
GMAIL_USER = 'user@domain' # default user if GSUITE_USER_FROM_EMAIL is not True. Default value None.
GMAIL_SCOPES = ['https://www.googleapis.com/auth/gmail.send', ... ] # Default value ['https://www.googleapis.com/auth/gmail.send', ]
Note:
GSUITE_CREDENTIALS_FILE
insettings.py
will take precedence over environment variable.
4. Send emails
from django.core.mail import send_mail
send_mail(
'Subject here',
'Here is the message.',
'from@example.com',
['to@example.com'],
fail_silently=False,
)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file djau_gsuite_email-0.1.6.tar.gz
.
File metadata
- Download URL: djau_gsuite_email-0.1.6.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86dfd004e960f8b74611f15ca6331dba5e4e819873d034f8daf6ca0b52d34c0a |
|
MD5 | 808f8c91acf495c6b4cba9ae18bc9d31 |
|
BLAKE2b-256 | 137d4b47afe323b94ac8ddc52269600fbb4b66bfb1934c911e3257024533f6d4 |
File details
Details for the file djau_gsuite_email-0.1.6-py3-none-any.whl
.
File metadata
- Download URL: djau_gsuite_email-0.1.6-py3-none-any.whl
- Upload date:
- Size: 6.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dfe067285b742fbe8f7717cc4e48ce0cd48192df611a2f4de75c1447f618c76b |
|
MD5 | ea5376c0cbc6bb85f8978a5fc0348c64 |
|
BLAKE2b-256 | 83c7031dcb62ae5554fc37d2efb179f369287961af12e9ea662e5899e860f06e |