dicr/yii2-phpmailer

Yii2 的 PHPMailer 适配器

安装数: 2,086

依赖者: 0

建议者: 0

安全: 0

星标: 1

分支: 1

类型:yii2-extension

1.0.0 2021-03-13 01:55 UTC

This package is auto-updated.

Last update: 2024-09-13 04:45:17 UTC


README

为 Yii2 提供的邮递服务,使用 PHPMailer 作为传输。

与标准 SwiftMailer 不同,支持使用 php 函数 mail 的发送方法。

配置

 $config = [
     'components' => [
        'mailer' => [
            'class' => dicr\phpmailer\PHPMailerMailer::class,
            
            // конфиг \PHPMailer\PHPMailer\PHPMailer
            'transportConfig' => [
                'CharSet' => CHARSET
            ],
            
            // конфиг сообщения по-умолчанию
            'messageConfig' => [
                'from' => FROM
            ]
        ]
    ]
];