From 3e3eb1d836014b06e072fa933b4b37bf431d6880 Mon Sep 17 00:00:00 2001 From: Marco Acierno Date: Thu, 5 May 2022 15:49:26 +0200 Subject: [PATCH] Add new speaker comm email template --- pythonit_toolkit/emails/templates.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pythonit_toolkit/emails/templates.py b/pythonit_toolkit/emails/templates.py index fe9e7bb..59950f3 100644 --- a/pythonit_toolkit/emails/templates.py +++ b/pythonit_toolkit/emails/templates.py @@ -8,6 +8,7 @@ class EmailTemplate(str, Enum): NEW_SCHEDULE_INVITATION_ANSWER = "new-schedule-invitation-answer" SUBMISSION_SCHEDULE_TIME_CHANGED = "submission-schedule-time-change" SPEAKER_VOUCHER_CODE = "speaker-voucher-code" + SPEAKER_COMMUNICATION = "speaker-communication" def __str__(self) -> str: return str.__str__(self)