Fixed #46 -- Added a plugin to send out emails

This commit is contained in:
Raphael Michel
2015-07-12 18:45:22 +02:00
parent e2215d2baa
commit 478b900ab3
11 changed files with 341 additions and 117 deletions

View File

@@ -0,0 +1,22 @@
from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
from pretix.base.plugins import PluginType
class SendMailApp(AppConfig):
name = 'pretix.plugins.sendmail'
verbose_name = _("Send out emails")
class PretixPluginMeta:
type = PluginType.ADMINFEATURE
name = _("Send out emails")
author = _("the pretix team")
version = '1.0.0'
description = _("This plugin allows you to send out emails " +
"to all your customers.")
def ready(self):
from . import signals # NOQA
default_app_config = 'pretix.plugins.sendmail.SendMailApp'