https://github.com/tyrellsys/cakephp3-aws-ses-transport
AWS SES Transport for CakePHP3 and CakePHP4
https://github.com/tyrellsys/cakephp3-aws-ses-transport
aws aws-ses-transport cakephp cakephp3 composer ses
Last synced: about 1 month ago
JSON representation
AWS SES Transport for CakePHP3 and CakePHP4
- Host: GitHub
- URL: https://github.com/tyrellsys/cakephp3-aws-ses-transport
- Owner: tyrellsys
- Created: 2016-11-21T08:33:20.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2025-02-17T01:39:41.000Z (about 1 year ago)
- Last Synced: 2025-09-26T18:54:35.474Z (5 months ago)
- Topics: aws, aws-ses-transport, cakephp, cakephp3, composer, ses
- Language: PHP
- Homepage:
- Size: 26.4 KB
- Stars: 4
- Watchers: 22
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AwsSesTransport plugin for CakePHP
## Installation
You can install this plugin into your CakePHP application using [composer](http://getcomposer.org).
For CakePHP 5.x compatible version:
```
composer require tyrellsys/cakephp3-aws-ses-transport:~5.0
```
For CakePHP 4.x compatible version:
```
composer require tyrellsys/cakephp3-aws-ses-transport:~4.0
```
For CakePHP 3.x compatible version:
```
composer require tyrellsys/cakephp3-aws-ses-transport:~3.0
```
## Configuration
app/config/app.php EmailTransport
```
'EmailTransport' => [
'default' => [
'className' => 'CakePHP3AwsSesTransport\Mailer\Transport\AwsSesTransport',
'region' => 'us-east-1', // optional
'version' => 'latest', // optional
'aws_access_key_id' => 'xxxx', // optional if EC2InstanceRole
'aws_access_secret_key' => 'xxxx', // optional if EC2InstanceRole
],
:
:
```