├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── config ├── amazon_ses.php └── autoload.php ├── controllers └── test_amazon_ses.php ├── libraries └── Amazon_ses.php └── spark.info /.gitignore: -------------------------------------------------------------------------------- 1 | config/amazon_ses_real.php -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelcox/codeigniter-amazon-ses/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelcox/codeigniter-amazon-ses/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelcox/codeigniter-amazon-ses/HEAD/README.md -------------------------------------------------------------------------------- /config/amazon_ses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelcox/codeigniter-amazon-ses/HEAD/config/amazon_ses.php -------------------------------------------------------------------------------- /config/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelcox/codeigniter-amazon-ses/HEAD/config/autoload.php -------------------------------------------------------------------------------- /controllers/test_amazon_ses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelcox/codeigniter-amazon-ses/HEAD/controllers/test_amazon_ses.php -------------------------------------------------------------------------------- /libraries/Amazon_ses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelcox/codeigniter-amazon-ses/HEAD/libraries/Amazon_ses.php -------------------------------------------------------------------------------- /spark.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joelcox/codeigniter-amazon-ses/HEAD/spark.info --------------------------------------------------------------------------------