Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ultimate-guitar/swiftsestransport
Swift AWS SES Transport for Yii2 Swiftmailer 2.1+
https://github.com/ultimate-guitar/swiftsestransport
aws aws-ses aws-ses-transport swiftmailer yii2 yii2-extension
Last synced: about 1 month ago
JSON representation
Swift AWS SES Transport for Yii2 Swiftmailer 2.1+
- Host: GitHub
- URL: https://github.com/ultimate-guitar/swiftsestransport
- Owner: ultimate-guitar
- Created: 2018-03-19T11:53:03.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-19T12:31:22.000Z (almost 7 years ago)
- Last Synced: 2024-03-15T06:43:53.150Z (10 months ago)
- Topics: aws, aws-ses, aws-ses-transport, swiftmailer, yii2, yii2-extension
- Language: PHP
- Homepage:
- Size: 12.7 KB
- Stars: 1
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Swift AWS SES Transport for Yii2 Swiftmailer 2.1+
Swift AWS SES Transport with support Yii2 Swiftmailer 2.1+
## How to install
`composer require "ultimate-guitar/swift-ses-transport"`
## How to use
Add to config file in your Yii2 app:
'mailer' => [
'class' => \yii\swiftmailer\Mailer::class,
'viewPath' => '@your/view/path',
'transport' => [
'class' => \UltimateGuitar\SwiftSesTransport\SesTransport::class,
'key_id' => 'your_aws_key_id',
'secret_key' => 'your_aws_secret_key',
'endpoint' => 'your_aws_endpoint',
],
],