omelya / yii2-phpmailer
PHPMailer for Yii2 的适配器
v1.0.1
2023-08-18 10:19 UTC
Requires
- php: ^8.0 || ^8.1
- phpmailer/phpmailer: ^6.7
- yiisoft/yii2: ^2.0
Requires (Dev)
- phpunit/phpunit: ^10.3
- roave/security-advisories: dev-master
This package is not auto-updated.
Last update: 2024-09-28 16:26:00 UTC
README
为 Yii2 提供的邮件服务,使用 PHPMailer 作为传输。
与标准的 SwiftMailer 不同,支持使用 php 函数的 mail 方法发送邮件。
配置
$config = [ 'components' => [ 'mailer' => [ 'class' => dicr\phpmailer\PHPMailerMailer::class, // конфиг \PHPMailer\PHPMailer\PHPMailer 'transportConfig' => [ 'CharSet' => CHARSET ], // конфиг сообщения по-умолчанию 'messageConfig' => [ 'from' => FROM ] ] ] ];