clippings / swiftmailer-modify
修改所有邮件的主题
1.1.0
2020-02-14 09:22 UTC
Requires
- php: ^7.1
- swiftmailer/swiftmailer: ^5.0
Requires (Dev)
- phpunit/phpunit: ^7
This package is auto-updated.
Last update: 2024-09-17 18:31:04 UTC
README
在发送前修改所有邮件
安装
通过composer安装
composer require clippings/swiftmailer-modify
用法
这将在每个消息中为测试环境添加 "[测试]" 前缀
if ($environment === 'testing') { $mailer->registerPLugin(new ModifyPlugin(function(Swift_Message $message) { $message->setSubject('[Test] '.$message->getSubject()); })); }
许可证
版权所有(c)2015,Clippings Ltd。由Ivan Kerin开发
在BSD-3-Clause许可证下,请阅读LICENSE文件。