mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-09 03:04:54 -04:00
fix: email typos (#1549)
* "your" -> "you're" in invitation email * "below" -> "above" in all emails
This commit is contained in:
parent
71d3db7aef
commit
ff2334a489
@ -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",
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user