diff --git a/apiserver/plane/bgtasks/forgot_password_task.py b/apiserver/plane/bgtasks/forgot_password_task.py index 485fef000..687e4f976 100644 --- a/apiserver/plane/bgtasks/forgot_password_task.py +++ b/apiserver/plane/bgtasks/forgot_password_task.py @@ -21,7 +21,7 @@ def forgot_password(first_name, email, uidb64, token, current_site): from_email_string = settings.EMAIL_FROM - subject = f"Verify your Email!" + subject = f"Reset Your Password - Plane" context = { "first_name": first_name, diff --git a/apiserver/templates/emails/auth/forgot_password.html b/apiserver/templates/emails/auth/forgot_password.html index 14a15e5b2..76b8903d7 100644 --- a/apiserver/templates/emails/auth/forgot_password.html +++ b/apiserver/templates/emails/auth/forgot_password.html @@ -1,11 +1,21 @@ -

+ + +

Dear {{first_name}},

- Here is the link to reset your password. -
- Link: {{forgot_password_url}} + We received a request to reset your password for your Plane account.

- Thank you -

+ To proceed with resetting your password, please click on the link below: +
+ {{forgot_password_url}} +

+ If you didn't request to reset your password, please ignore this email. Your account will remain secure. +

+ If you have any questions or need further assistance, please contact our support team. +

+ Thank you for using Plane. +

+ + \ No newline at end of file