├── .env_sample ├── .github └── workflows │ ├── pr-lint.yml │ └── test.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 ├── docker-compose.yml ├── docker ├── Dockerfile └── example.go ├── examples └── example.go ├── rest.go ├── rest_test.go ├── 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/rest/HEAD/.github/workflows/pr-lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /FIRST_TIMERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/FIRST_TIMERS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/Makefile -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/README.md -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/USAGE.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/docker/example.go -------------------------------------------------------------------------------- /examples/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/examples/example.go -------------------------------------------------------------------------------- /rest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/rest.go -------------------------------------------------------------------------------- /rest_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/rest_test.go -------------------------------------------------------------------------------- /static/img/github-fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/static/img/github-fork.png -------------------------------------------------------------------------------- /static/img/github-sign-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/static/img/github-sign-up.png -------------------------------------------------------------------------------- /twilio_sendgrid_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/twilio_sendgrid_logo.png -------------------------------------------------------------------------------- /use-cases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sendgrid/rest/HEAD/use-cases/README.md --------------------------------------------------------------------------------