dicr / yii2-phpmailer
Yii2 的 PHPMailer 适配器
1.0.0
2021-03-13 01:55 UTC
Requires
- php: ~7.4 || ~8.0.1
- phpmailer/phpmailer: ~v6.3
- yiisoft/yii2: ~2.0
Requires (Dev)
- phpunit/phpunit: ~9.5
- roave/security-advisories: dev-master
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
]
]
]
];