Update payment email templates

This commit is contained in:
Christian Cueni 2023-12-28 17:02:22 +01:00
parent 8c6b01cec2
commit 909803f3c1
2 changed files with 3 additions and 4 deletions

View File

@ -65,8 +65,8 @@ class EmailTemplate(Enum):
# Versicherungsvermittler (after buying a course)
WELCOME_MAIL_VV = {
"de": "d-308a72c779b74c8487cdec03c772ad13",
"fr": "d-1a0958c7798c4dd18f730491e920eab5",
"it": "d-0882ec9c92f64312b9f358481a943c9a",
"fr": "d-77b3c3a0f185408da55ce006226ca3ff",
"it": "d-d27db9fc96f34f55a8cacf7640787c4e",
}
# VBV - Lernbegleitung Einladung

View File

@ -215,8 +215,7 @@ def send_vv_welcome_email(checkout_info: CheckoutInformation):
"company_street": f"{checkout_info.company_street} {checkout_info.company_street_number}",
"company_city": f"{checkout_info.company_postal_code} {checkout_info.company_city} {checkout_info.company_country}",
},
# template_language=checkout_info.user.language,
template_language="de",
template_language=checkout_info.user.language,
fail_silently=True,
)