package
0.0.0-20210418013023-498cede6354f
Repository: https://github.com/ajithkumar-raj/go-learn.git
Documentation: pkg.go.dev

# README

GO SMTP TEMPLATE

Go SMTP temple will send you a mail with Content-Type: text/html.

Pre Request

Please enable less secure app access from your account

Config

Create a config.go with fromAdd, password, and toAdd

// const.go
package main

// Sender data.
const fromAdd = "[email protected]"
const password = "pass"

// To Addresses
var toAdd = []string{
	"[email protected]",
}