├── .env_sample ├── .github └── workflows │ ├── pr-lint.yml │ └── test-and-deploy.yml ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── FIRST_TIMERS.md ├── LICENSE ├── Makefile ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── TROUBLESHOOTING.md ├── USAGE.md ├── examples └── example.go ├── go.test.sh ├── smtpapi.go ├── smtpapi_test.go ├── smtpapi_test_strings.json ├── static └── img │ ├── github-fork.png │ └── github-sign-up.png ├── twilio_sendgrid_logo.png └── use_cases └── README.md /.env_sample: -------------------------------------------------------------------------------- 1 | export SENDGRID_API_KEY='' -------------------------------------------------------------------------------- /.github/workflows/pr-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/.github/workflows/pr-lint.yml -------------------------------------------------------------------------------- /.github/workflows/test-and-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/.github/workflows/test-and-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FIRST_TIMERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/FIRST_TIMERS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/Makefile -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/README.md -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/USAGE.md -------------------------------------------------------------------------------- /examples/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/examples/example.go -------------------------------------------------------------------------------- /go.test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/go.test.sh -------------------------------------------------------------------------------- /smtpapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/smtpapi.go -------------------------------------------------------------------------------- /smtpapi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/smtpapi_test.go -------------------------------------------------------------------------------- /smtpapi_test_strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/smtpapi_test_strings.json -------------------------------------------------------------------------------- /static/img/github-fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/static/img/github-fork.png -------------------------------------------------------------------------------- /static/img/github-sign-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/static/img/github-sign-up.png -------------------------------------------------------------------------------- /twilio_sendgrid_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/twilio_sendgrid_logo.png -------------------------------------------------------------------------------- /use_cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/smtpapi-go/HEAD/use_cases/README.md --------------------------------------------------------------------------------