Skip to content
This repository has been archived by the owner on Jun 16, 2022. It is now read-only.

jaysonsantos/django-uwsgi-mail

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django uWSGI Mail

A Django backend for e-mail delivery using uWSGI Spool to queue deliveries.

Usage

First, add uWSGI backend in your settings file.

EMAIL_BACKEND = 'uwsgi_mail.uwsgi.EmailBackend'

And send your e-mails normally.

from django.core.mail import send_mail

send_mail('Subject here', 'Here is the message.', 'from@example.com',
    ['to@example.com'], fail_silently=False)

Changing the backend

By default the django.core.mail.backends.smtp.EmailBackend is used for the real e-mail delivery. You can change that using:

UWSGI_EMAIL_BACKEND = 'your.backend.EmailBackend'

Running the simple test

cd test_project/
uwsgi --ini uwsgi.ini

Open your browser with http://127.0.0.1:8000. File shoulde be queued and processed.

About

A backend to queue django e-mails in uWSGI spool

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages