Feat: Password Reset Email For Users #149
Closed
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the implementation of
[POST] /api/v1/auth/password-reset-email
[UNPROTECTED Endpoint]Description
Added functionality for sending password reset emails. This includes creating a new endpoint /password-reset-email, a utility function to generate reset tokens, and integration with an email service to send the password reset email. The email contains a secure link for users to reset their passwords.
Related Issue (Link to issue ticket)
This is an implementation of an open issue #51
## Addition
I added
fastapi-mail
dependency to the requirements.txt file.fastapi-mail
is required for sending of emails.Motivation and Context
This change is required to allow users to reset their passwords securely if they forget them. It enhances the security and user experience of the application.
How Has This Been Tested?
The new functionality has been tested using pytest, httpx, and Postman. Tests include:
Test environment:
Screenshots (if appropriate - Postman, Fast API, etc):
Successful Response
Error Response
Fast API
Types of changes
Checklist: