https://github.com/shankytiwari/how-to-send-e-mail-using-golang
Send e-mail using GoLang using smtp package
https://github.com/shankytiwari/how-to-send-e-mail-using-golang
email-sender emails golang golang-email golang-examples
Last synced: 3 months ago
JSON representation
Send e-mail using GoLang using smtp package
- Host: GitHub
- URL: https://github.com/shankytiwari/how-to-send-e-mail-using-golang
- Owner: ShankyTiwari
- Created: 2020-03-28T18:07:06.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-28T18:10:38.000Z (about 5 years ago)
- Last Synced: 2025-01-29T22:29:56.529Z (5 months ago)
- Topics: email-sender, emails, golang, golang-email, golang-examples
- Language: Go
- Homepage: https://www.codershood.info/2020/03/28/how-to-send-e-mail-using-golang
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# How to Send e-mail using GoLang
How to Send e-mail using GoLang and wrote a small program to demonstrate the same.
## Installtion
Below command will Install all the dependencies recursively.
```bash
go get -d ./...
```## Starting the GO server
Below command will start the GO server.
```bash
go build
```