From ff2334a4894f2a56a78ac1f2882c17facb11585d Mon Sep 17 00:00:00 2001 From: Ryan Quinn Date: Fri, 12 Aug 2022 09:54:41 -0700 Subject: [PATCH] fix: email typos (#1549) * "your" -> "you're" in invitation email * "below" -> "above" in all emails --- mealie/services/email/email_service.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mealie/services/email/email_service.py b/mealie/services/email/email_service.py index ccbb297b3873..c93ee1f20430 100644 --- a/mealie/services/email/email_service.py +++ b/mealie/services/email/email_service.py @@ -46,7 +46,7 @@ class EmailService(BaseService): subject="Mealie Forgot Password", header_text="Forgot Password", message_top="You have requested to reset your password.", - message_bottom="Please click the button below to reset your password.", + message_bottom="Please click the button above to reset your password.", button_link=reset_password_url, button_text="Reset Password", ) @@ -55,9 +55,9 @@ class EmailService(BaseService): def send_invitation(self, address: str, invitation_url: str) -> bool: invitation = EmailTemplate( subject="Invitation to join Mealie", - header_text="Your Invited!", + header_text="You're Invited!", message_top="You have been invited to join Mealie.", - message_bottom="Please click the button below to accept the invitation.", + message_bottom="Please click the button above to accept the invitation.", button_link=invitation_url, button_text="Accept Invitation", ) @@ -68,7 +68,7 @@ class EmailService(BaseService): subject="Test Email", header_text="Test Email", message_top="This is a test email.", - message_bottom="Please click the button below to test the email.", + message_bottom="Please click the button above to test the email.", button_link="https://www.google.com", button_text="Test Email", )