clippings / swiftmailer-observers
Assign bcc for specific email types globally
Installs: 86 192
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 24
Forks: 0
Open Issues: 1
Requires
- php: ^7.1
- swiftmailer/swiftmailer: ^5.0
Requires (Dev)
- phpunit/phpunit: ^7
This package is not auto-updated.
Last update: 2025-03-22 18:25:22 UTC
README
Assign bcc for specific email types globally
Installation
Install via composer
composer require clippings/swiftmailer-observers
Usage
$mailer->registerPLugin(new ObserversPlugin([ 'test@example.com' => [ 'event1', 'event2', ] ])); $headers = $message->getHeaders(); $headers->addTextHeader(ObserversPlugin::HEADER, 'event1'); // Will add 'test@example.com' to bcc $mailer->send($message);
License
Copyright (c) 2015, Clippings Ltd. Developed by Ivan Kerin
Under BSD-3-Clause license, read LICENSE file.