Send e-mails on order completion (#27)

This commit is contained in:
Raphael Michel
2015-04-01 10:30:07 +02:00
parent 8a81d4859d
commit 16244bd69c
9 changed files with 105 additions and 2 deletions

View File

@@ -4,6 +4,7 @@ import decimal
import dateutil.parser
from django.db.models import Model
from django.conf import settings
from versions.models import Versionable
@@ -14,6 +15,7 @@ DEFAULTS = {
'attendee_names_required': 'False',
'reservation_time': '30',
'last_order_modification_date': None,
'mail_from': settings.MAIL_FROM,
}