├── .circleci └── config.yml ├── .env.example ├── .gitignore ├── LICENSE ├── README.md ├── emails └── welcome_mail │ └── welcome_mail.go ├── go.mod ├── go.sum ├── handlers └── welcome │ ├── welcome.go │ └── welcome_test.go ├── helpers └── helpers.go ├── main.go └── templates └── welcome_mail.html /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorsteven/sending-and-testing-emails-in-Go/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorsteven/sending-and-testing-emails-in-Go/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorsteven/sending-and-testing-emails-in-Go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorsteven/sending-and-testing-emails-in-Go/HEAD/README.md -------------------------------------------------------------------------------- /emails/welcome_mail/welcome_mail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorsteven/sending-and-testing-emails-in-Go/HEAD/emails/welcome_mail/welcome_mail.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorsteven/sending-and-testing-emails-in-Go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorsteven/sending-and-testing-emails-in-Go/HEAD/go.sum -------------------------------------------------------------------------------- /handlers/welcome/welcome.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorsteven/sending-and-testing-emails-in-Go/HEAD/handlers/welcome/welcome.go -------------------------------------------------------------------------------- /handlers/welcome/welcome_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorsteven/sending-and-testing-emails-in-Go/HEAD/handlers/welcome/welcome_test.go -------------------------------------------------------------------------------- /helpers/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorsteven/sending-and-testing-emails-in-Go/HEAD/helpers/helpers.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorsteven/sending-and-testing-emails-in-Go/HEAD/main.go -------------------------------------------------------------------------------- /templates/welcome_mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorsteven/sending-and-testing-emails-in-Go/HEAD/templates/welcome_mail.html --------------------------------------------------------------------------------