Fix #293 -- Add ticket downloading reminder (#567)

Closes https://github.com/pretix/pretix/issues/293
This commit is contained in:
Sanket Dasgupta
2017-08-07 19:45:27 +05:30
committed by Raphael Michel
parent 0990c9cc3d
commit cb2826f171
6 changed files with 90 additions and 0 deletions

View File

@@ -360,6 +360,21 @@ Your {event} team"""))
You can change your order details and view the status of your order at
{url}
Best regards,
Your {event} team"""))
},
'mail_days_download_reminder': {
'type': int,
'default': None
},
'mail_text_download_reminder': {
'type': LazyI18nString,
'default': LazyI18nString.from_gettext(ugettext_noop("""Hello,
you bought a ticket for {event}.
This is to remind you that your ticket is ready for downloading!
Best regards,
Your {event} team"""))
},