├── .gitignore ├── LICENSE ├── README.md ├── smtp.go ├── smtp_test.go └── util.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admpub/mail/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admpub/mail/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admpub/mail/HEAD/README.md -------------------------------------------------------------------------------- /smtp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admpub/mail/HEAD/smtp.go -------------------------------------------------------------------------------- /smtp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admpub/mail/HEAD/smtp_test.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/admpub/mail/HEAD/util.go --------------------------------------------------------------------------------