├── .gitignore ├── AmazonEmailMessage.pas ├── AmazonEmailService.pas ├── AmazonEmailServiceConfiguration.pas ├── AmazonEmailServiceRegions.pas ├── AmazonEmailServiceRequests.pas ├── BuildQueryParameters.pas ├── EncodeQueryParams.pas ├── LICENSE ├── PopulateResponseInfo.pas ├── PrepareRequestSignature.pas ├── README.md └── tests ├── AmazonEmailService.groupproj ├── AmazonEmailServiceConfigurationTests.pas ├── AmazonEmailServiceRegionsTests.pas ├── AmazonEmailServiceRequestsTests.pas ├── AmazonEmailServiceTests.dpr ├── AmazonEmailServiceTests.dproj ├── BuildQueryParametersTests.pas ├── DunitXTestRunner.pas ├── EncodeQueryParamsTests.pas ├── PopulateResponseInfoTests.pas ├── PrepareRequestSignatureTests.pas ├── README.md ├── libeay32.dll └── ssleay32.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/.gitignore -------------------------------------------------------------------------------- /AmazonEmailMessage.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/AmazonEmailMessage.pas -------------------------------------------------------------------------------- /AmazonEmailService.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/AmazonEmailService.pas -------------------------------------------------------------------------------- /AmazonEmailServiceConfiguration.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/AmazonEmailServiceConfiguration.pas -------------------------------------------------------------------------------- /AmazonEmailServiceRegions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/AmazonEmailServiceRegions.pas -------------------------------------------------------------------------------- /AmazonEmailServiceRequests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/AmazonEmailServiceRequests.pas -------------------------------------------------------------------------------- /BuildQueryParameters.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/BuildQueryParameters.pas -------------------------------------------------------------------------------- /EncodeQueryParams.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/EncodeQueryParams.pas -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/LICENSE -------------------------------------------------------------------------------- /PopulateResponseInfo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/PopulateResponseInfo.pas -------------------------------------------------------------------------------- /PrepareRequestSignature.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/PrepareRequestSignature.pas -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/README.md -------------------------------------------------------------------------------- /tests/AmazonEmailService.groupproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/tests/AmazonEmailService.groupproj -------------------------------------------------------------------------------- /tests/AmazonEmailServiceConfigurationTests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/tests/AmazonEmailServiceConfigurationTests.pas -------------------------------------------------------------------------------- /tests/AmazonEmailServiceRegionsTests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/tests/AmazonEmailServiceRegionsTests.pas -------------------------------------------------------------------------------- /tests/AmazonEmailServiceRequestsTests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/tests/AmazonEmailServiceRequestsTests.pas -------------------------------------------------------------------------------- /tests/AmazonEmailServiceTests.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/tests/AmazonEmailServiceTests.dpr -------------------------------------------------------------------------------- /tests/AmazonEmailServiceTests.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/tests/AmazonEmailServiceTests.dproj -------------------------------------------------------------------------------- /tests/BuildQueryParametersTests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/tests/BuildQueryParametersTests.pas -------------------------------------------------------------------------------- /tests/DunitXTestRunner.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/tests/DunitXTestRunner.pas -------------------------------------------------------------------------------- /tests/EncodeQueryParamsTests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/tests/EncodeQueryParamsTests.pas -------------------------------------------------------------------------------- /tests/PopulateResponseInfoTests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/tests/PopulateResponseInfoTests.pas -------------------------------------------------------------------------------- /tests/PrepareRequestSignatureTests.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/tests/PrepareRequestSignatureTests.pas -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/tests/libeay32.dll -------------------------------------------------------------------------------- /tests/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monde-sistemas/delphi-aws-ses/HEAD/tests/ssleay32.dll --------------------------------------------------------------------------------