├── CHANGELOG.md ├── LICENSE ├── README.md ├── RemoteEvent └── SendgridPayloadConverter.php ├── Transport ├── SendgridApiTransport.php ├── SendgridSmtpTransport.php └── SendgridTransportFactory.php ├── Webhook └── SendgridRequestParser.php └── composer.json /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/sendgrid-mailer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/sendgrid-mailer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/sendgrid-mailer/HEAD/README.md -------------------------------------------------------------------------------- /RemoteEvent/SendgridPayloadConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/sendgrid-mailer/HEAD/RemoteEvent/SendgridPayloadConverter.php -------------------------------------------------------------------------------- /Transport/SendgridApiTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/sendgrid-mailer/HEAD/Transport/SendgridApiTransport.php -------------------------------------------------------------------------------- /Transport/SendgridSmtpTransport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/sendgrid-mailer/HEAD/Transport/SendgridSmtpTransport.php -------------------------------------------------------------------------------- /Transport/SendgridTransportFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/sendgrid-mailer/HEAD/Transport/SendgridTransportFactory.php -------------------------------------------------------------------------------- /Webhook/SendgridRequestParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/sendgrid-mailer/HEAD/Webhook/SendgridRequestParser.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/symfony/sendgrid-mailer/HEAD/composer.json --------------------------------------------------------------------------------