|
1 | | -#CRUD RESTful API with Golang + MongoDB + Redis + Gin Gonic |
| 1 | +#API with Golang + MongoDB: Send HTML Emails with Gomail |
| 2 | + |
| 3 | +In this article, you'll learn how to send HTML emails with Golang, Gomail, MongoDB-Go-Driver, Redis, and Docker-compose. Also, you'll learn how to generate HTML templates with the standard Golang html/template package. |
| 4 | + |
| 5 | + |
| 6 | + |
| 7 | +##Topics Covered |
| 8 | + |
| 9 | +- Send Emails with Golang, MongoDB, and Gomail Overview |
| 10 | +- Creating the HTML Email Templates with Golang |
| 11 | +- Create an SMTP Provider Account |
| 12 | +- Load and Validate Environment Variables Viper |
| 13 | +- Create a Utility Function to Send the Emails |
| 14 | +- Update the SignUp Controller |
| 15 | + |
| 16 | +Read the entire article here:[https://codevoweb.com/api-golang-mongodb-send-html-emails-gomail](https://codevoweb.com/api-golang-mongodb-send-html-emails-gomail) |
| 17 | + |
| 18 | +Articles in this series: |
2 | 19 |
|
3 | 20 | ###1. API with Golang + MongoDB + Redis + Gin Gonic: Project Setup |
4 | 21 |
|
|