File: email.rst

package info (click to toggle)
django-uwsgi 1.1.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 752 kB
  • sloc: python: 912; makefile: 158
file content (58 lines) | stat: -rw-r--r-- 1,098 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
Email Backend
=============

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

Usage
-----

First, add uWSGI backend in your settings file.


.. code-block:: py

    EMAIL_BACKEND = 'django_uwsgi.mail.EmailBackend'


And send your e-mails normally.


.. code-block:: py

    from django.core.mail import send_mail

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


Note
----

You must setup uwsgi spooler.
Example ini:


.. code-block:: ini

    plugin = spooler
    spooler = /tmp
    spooler-import = django_uwsgi.tasks


or use built in management command `runuwsgi`


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: 

.. code-block:: py

    UWSGI_EMAIL_BACKEND = 'your.backend.EmailBackend'


django-configurations
---------------------

If you're using django-configurations in your project, you must setup importer as mentioned in django-configurations docs for celery