[REF] Ship Flexmailer extension with Core
authorSeamus Lee <seamuslee001@gmail.com>
Sat, 20 Jun 2020 08:06:25 +0000 (18:06 +1000)
committerSeamus Lee <seamuslee001@gmail.com>
Wed, 1 Jul 2020 06:12:46 +0000 (16:12 +1000)
commitbdf67e2837be3eec51cf647cb974c05daad453e5
treee6f674af2748378c56310a34419ce807cf4f6700
parent3f2c058a2b3ce0fec88dc55e32def4655bb87476
[REF] Ship Flexmailer extension with Core
57 files changed:
.gitignore
ext/flexmailer/CHANGELOG.md [new file with mode: 0644]
ext/flexmailer/LICENSE.txt [new file with mode: 0644]
ext/flexmailer/README.md [new file with mode: 0644]
ext/flexmailer/docs/develop/CheckSendableEvent.md [new file with mode: 0644]
ext/flexmailer/docs/develop/ComposeBatchEvent.md [new file with mode: 0644]
ext/flexmailer/docs/develop/RunEvent.md [new file with mode: 0644]
ext/flexmailer/docs/develop/SendBatchEvent.md [new file with mode: 0644]
ext/flexmailer/docs/develop/WalkBatchesEvent.md [new file with mode: 0644]
ext/flexmailer/docs/develop/index.md [new file with mode: 0644]
ext/flexmailer/docs/index.md [new file with mode: 0644]
ext/flexmailer/docs/install.md [new file with mode: 0644]
ext/flexmailer/flexmailer.civix.php [new file with mode: 0644]
ext/flexmailer/flexmailer.php [new file with mode: 0644]
ext/flexmailer/info.xml [new file with mode: 0644]
ext/flexmailer/mkdocs.yml [new file with mode: 0644]
ext/flexmailer/phpunit.xml.dist [new file with mode: 0644]
ext/flexmailer/settings/flexmailer.setting.php [new file with mode: 0644]
ext/flexmailer/src/API/MailingPreview.php [new file with mode: 0644]
ext/flexmailer/src/ClickTracker/ClickTrackerInterface.php [new file with mode: 0644]
ext/flexmailer/src/ClickTracker/HtmlClickTracker.php [new file with mode: 0644]
ext/flexmailer/src/ClickTracker/TextClickTracker.php [new file with mode: 0644]
ext/flexmailer/src/Event/BaseEvent.php [new file with mode: 0644]
ext/flexmailer/src/Event/CheckSendableEvent.php [new file with mode: 0644]
ext/flexmailer/src/Event/ComposeBatchEvent.php [new file with mode: 0644]
ext/flexmailer/src/Event/RunEvent.php [new file with mode: 0644]
ext/flexmailer/src/Event/SendBatchEvent.php [new file with mode: 0644]
ext/flexmailer/src/Event/WalkBatchesEvent.php [new file with mode: 0644]
ext/flexmailer/src/FlexMailer.php [new file with mode: 0644]
ext/flexmailer/src/FlexMailerTask.php [new file with mode: 0644]
ext/flexmailer/src/Listener/Abdicator.php [new file with mode: 0644]
ext/flexmailer/src/Listener/Attachments.php [new file with mode: 0644]
ext/flexmailer/src/Listener/BaseListener.php [new file with mode: 0644]
ext/flexmailer/src/Listener/BasicHeaders.php [new file with mode: 0644]
ext/flexmailer/src/Listener/BounceTracker.php [new file with mode: 0644]
ext/flexmailer/src/Listener/DefaultBatcher.php [new file with mode: 0644]
ext/flexmailer/src/Listener/DefaultComposer.php [new file with mode: 0644]
ext/flexmailer/src/Listener/DefaultSender.php [new file with mode: 0644]
ext/flexmailer/src/Listener/HookAdapter.php [new file with mode: 0644]
ext/flexmailer/src/Listener/OpenTracker.php [new file with mode: 0644]
ext/flexmailer/src/Listener/RequiredFields.php [new file with mode: 0644]
ext/flexmailer/src/Listener/RequiredTokens.php [new file with mode: 0644]
ext/flexmailer/src/Listener/SimpleFilter.php [new file with mode: 0644]
ext/flexmailer/src/Listener/TestPrefix.php [new file with mode: 0644]
ext/flexmailer/src/Listener/ToHeader.php [new file with mode: 0644]
ext/flexmailer/src/MailParams.php [new file with mode: 0644]
ext/flexmailer/src/Services.php [new file with mode: 0644]
ext/flexmailer/src/Validator.php [new file with mode: 0644]
ext/flexmailer/tests/phpunit/Civi/FlexMailer/ClickTracker/HtmlClickTrackerTest.php [new file with mode: 0644]
ext/flexmailer/tests/phpunit/Civi/FlexMailer/ClickTracker/TextClickTrackerTest.php [new file with mode: 0644]
ext/flexmailer/tests/phpunit/Civi/FlexMailer/ConcurrentDeliveryTest.php [new file with mode: 0644]
ext/flexmailer/tests/phpunit/Civi/FlexMailer/FlexMailerSystemTest.php [new file with mode: 0644]
ext/flexmailer/tests/phpunit/Civi/FlexMailer/Listener/SimpleFilterTest.php [new file with mode: 0644]
ext/flexmailer/tests/phpunit/Civi/FlexMailer/MailingPreviewTest.php [new file with mode: 0644]
ext/flexmailer/tests/phpunit/Civi/FlexMailer/ValidatorTest.php [new file with mode: 0644]
ext/flexmailer/tests/phpunit/bootstrap.php [new file with mode: 0644]
ext/flexmailer/xml/Menu/flexmailer.xml [new file with mode: 0644]