1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-05 13:35:23 +02:00

feat: Internationalize sent emails (#3818)

This commit is contained in:
Arsène Reymond 2024-07-20 12:32:24 +02:00 committed by GitHub
parent c205dff523
commit 60c33b499c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 78 additions and 31 deletions

View file

@ -6,7 +6,7 @@ from mealie.services.email.email_senders import ABCEmailSender
FAKE_ADDRESS = "my_secret_email@example.com"
SUBJECTS = {"Mealie Forgot Password", "Invitation to join Mealie", "Test Email"}
SUBJECTS = {"Mealie Forgot Password", "Invitation to join Mealie", "Mealie Test Email"}
class TestEmailSender(ABCEmailSender):