File: conf.py

package info (click to toggle)
django-celery-email 3.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 168 kB
  • sloc: python: 494; makefile: 8
file content (11 lines) | stat: -rw-r--r-- 257 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
from appconf import AppConf


class DjangoCeleryEmailAppConf(AppConf):
    class Meta:
        prefix = 'CELERY_EMAIL'

    TASK_CONFIG = {}
    BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
    CHUNK_SIZE = 10
    MESSAGE_EXTRA_ATTRIBUTES = None