monthly-basis / simple-email-service
v0.2.1
2022-08-13 08:24 UTC
Requires
- aws/aws-php-sns-message-validator: ^1.6
- aws/aws-sdk-php: ^3.183
- laminas/laminas-cli: ^1.1
- laminas/laminas-db: ^2.9
- laminas/laminas-mvc: ^3.0
- laminas/laminas-test: ^4.0
- monthly-basis/laminas-test: ^2.0
- monthly-basis/stop-forum-spam: ^1.0
- monthly-basis/website: ^2.0
README
This monthly-basis/simple-email-service package is a wrapper for using AWS's Simple Email Service from within the Laminas PHP framework.
Config
Add and configure the following lines in your local config file, usually located at config/autoload/local.php
return [
// ...
'monthly-basis' => [
// ...
'simple-email-service' => [
'logs' => [
'bounce' => '/path/to/bounce.log',
'complaint' => '/path/to/complaint.log',
'delivery' => '/path/to/delivery.log',
],
],
// ...
],
// ...
];