按月基础/简单电子邮件服务

v0.2.1 2022-08-13 08:24 UTC

This package is auto-updated.

Last update: 2024-09-13 13:00:25 UTC


README

此 monthly-basis/simple-email-service 包是用于在 Laminas PHP 框架内部使用 AWS 简单电子邮件服务的封装。

配置

在您的本地配置文件中添加并配置以下行,通常位于 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',
            ],  
        ],  
        // ...
    ],
    // ...
];