An easy django email backend to send email using Submail's python Mail API.
Django >= 1.8. Django with other versions are not tested.
Install the backend from PyPI:
pip install django-submail
Add the following lines to your project's settings.py
or your local settings:
EMAIL_BACKEND = "smbackend.SubmailBackend"
SUBMAIL_APP_ID = "Your Submail APPID"
SUBMAIL_APP_KEY = "Your Submail APPKey"
If you use send_mail
method, you can simply do it by, for example:
from django.core.mail import send_mail
send_mail(
"Your Subject",
"This is a pure text email body.",
"Dong Zhuang <hello@foo.com>",
["dongzhuang@bar.com"]
)
If you want to use the EmailMessage
class, then:
from django.core.mail import EmailMessage
mail = EmailMultiAlternatives(
subject="Your Subject",
body="This is a pure text email body.",
from_email="Dong Zhuang <hello@example.com>",
to=["dongzhuang@foo.com"],
headers={"Reply-To": "dongzhuang@bar.com"}
)
mail.send()
If you want to use the EmailMultiAlternatives
class, then:
from django.core.mail import EmailMultiAlternatives
mail = EmailMultiAlternatives(
subject="Your Subject",
body="This is a pure text email body.",
from_email="Dong Zhuang <hello@example.com>",
to=["dongzhuang@foo.com"],
headers={"Reply-To": "dongzhuang@bar.com"}
)
mail.attach_alternative(
"<p>This is an HTML email body</p>", "text/html")
mail.send()
Sometimes you need to send some other emails using APPID other than the default SUBMAIL_APP_ID
set in settings.py
, you can use add SUBMAIL_APP_ID
and SUBMAIL_APP_KEY
keys in
header, for example:
from django.core.mail import EmailMultiAlternatives
mail = EmailMultiAlternatives(
subject="Your Subject",
body="This is a simple text email body.",
from_email="Dong Zhuang <hello@example.com>",
to=["dongzhuang@foo.com"],
headers={
"Reply-To": "dongzhuang@bar.com",
"SUBMAIL_APP_ID": settings.ANOTHER_APP_ID,
"SUBMAIL_APP_KEY": settings.ANOTHER_APP_KEY}
)
mail.attach_alternative("<p>This is an HTML email body</p>", "text/html")
mail.send()
A demo is included in the repository, you can clone the git and run it locally.
You can optionally run the demo using virtualenv
.
pip install virtualenv
virtualenv venv
venv/scripts/activate
Then
pip install django
pip install django-submail
git clone https://github.com/dzhuang/django-submail.git
cd django-submail/demo
python manage.py migrate
Make a copy of example local settings:
cd demo
cp settings_local.py.example settings_local.py
vi settings_local.py
Edit params in settings_local.py
according to your own
submail app, and edit demo/test_smbackend/views.py
if
necessary, then run the dev server:
cd ..
python manage.py runserver
and visit http://127.0.0.1:8000 to see the result.
- Support Submail's mail/xsend API
- Support Submail's addressbook
The MIT License.
Django-submail is wholly open source and welcomes contributions of any kind. Feel free to either extend it, report bugs, or provide suggestions for improvements. The author of can be contacted at dzhuang.scut@gmail.com.