|
1 |
| -#CRUD RESTful API with Golang + MongoDB + Redis + Gin Gonic |
| 1 | +#API with Golang, Gin Gonic & MongoDB: Forget/Reset Password |
| 2 | + |
| 3 | +In this article, you'll learn how to implement forget/reset password functionality with Golang, Gin Gonic, Gomail, MongoDB-Go-driver, Redis, and Docker-compose. |
| 4 | + |
| 5 | + |
| 6 | + |
| 7 | +##Topics Covered |
| 8 | + |
| 9 | +- Forget/Reset Password with Golang, Gin, and MongoDB |
| 10 | +- Create the MongoDB Model Structs |
| 11 | +- Create the HTML Email Templates with Golang |
| 12 | +- Define a Utility Function to Parse the HTML Templates |
| 13 | +- Create a Function to Send the HTML Emails |
| 14 | +- Add the Forgot Password Controller |
| 15 | +- Add the Reset Password Controller |
| 16 | +- Register the Gin API Routes |
| 17 | + |
| 18 | +Read the entire article here:[https://codevoweb.com/api-golang-gin-gonic-mongodb-forget-reset-password](https://codevoweb.com/api-golang-gin-gonic-mongodb-forget-reset-password) |
| 19 | + |
| 20 | +Articles in this series: |
2 | 21 |
|
3 | 22 | ###1. API with Golang + MongoDB + Redis + Gin Gonic: Project Setup
|
4 | 23 |
|
|