├── .env.testing ├── .github ├── CODEOWNERS └── workflows │ └── test.yml ├── .gitignore ├── .spi.yml ├── .swift-format ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── SendGrid │ ├── Application+SendGrid.swift │ ├── Exports.swift │ ├── Request+SendGrid.swift │ └── SendGrid.docc │ └── SendGrid.md └── Tests └── SendGridTests └── SendGridTests.swift /.env.testing: -------------------------------------------------------------------------------- 1 | SENDGRID_API_KEY=SG.1234567890 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @fpseverino -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/sendgrid/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/sendgrid/HEAD/.gitignore -------------------------------------------------------------------------------- /.spi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/sendgrid/HEAD/.spi.yml -------------------------------------------------------------------------------- /.swift-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/sendgrid/HEAD/.swift-format -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/sendgrid/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/sendgrid/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/sendgrid/HEAD/README.md -------------------------------------------------------------------------------- /Sources/SendGrid/Application+SendGrid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/sendgrid/HEAD/Sources/SendGrid/Application+SendGrid.swift -------------------------------------------------------------------------------- /Sources/SendGrid/Exports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/sendgrid/HEAD/Sources/SendGrid/Exports.swift -------------------------------------------------------------------------------- /Sources/SendGrid/Request+SendGrid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/sendgrid/HEAD/Sources/SendGrid/Request+SendGrid.swift -------------------------------------------------------------------------------- /Sources/SendGrid/SendGrid.docc/SendGrid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/sendgrid/HEAD/Sources/SendGrid/SendGrid.docc/SendGrid.md -------------------------------------------------------------------------------- /Tests/SendGridTests/SendGridTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vapor-community/sendgrid/HEAD/Tests/SendGridTests/SendGridTests.swift --------------------------------------------------------------------------------