kozikaza / mindbaz-bundle
Symfony bundle to provide a Mindbaz SwiftMailer service
Installs: 1 605
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 1
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.6
- ext-soap: *
- lancasters/mindbaz-library: ~1.0.0
- swiftmailer/swiftmailer: ~4.0|~5.0
- symfony/config: ~2.8|~3.0
- symfony/dependency-injection: ~2.7|~3.0
- symfony/serializer: ~2.7|~3.0
Requires (Dev)
- behat/behat: ^3.3
- behat/symfony2-extension: ^2.1
- ddtraceweb/monolog-parser: ^1.2
- doctrine/annotations: ^1.4
- gorghoa/scenariostate-behat-extension: ^1.0
- jms/serializer-bundle: ^1.3
- leanphp/phpspec-code-coverage: ^3.1
- phpspec/phpspec: ^3.2
- phpunit/phpunit: ^5.7
- symfony/browser-kit: ^3.2
- symfony/framework-bundle: ^2.8|^3.0
- symfony/monolog-bundle: ^3.1
- symfony/property-access: ^3.2
- symfony/swiftmailer-bundle: ^2.5
This package is not auto-updated.
Last update: 2025-01-10 23:25:16 UTC
README
Symfony bundle to provide a Mindbaz SwiftMailer service.
Feel free to contribute on it!
Installation
Installing MindbazBundle can be done easily through Composer:
composer require kozikaza/mindbaz-bundle
Register this bundle in your kernel:
// app/AppKernel.php public function registerBundles() { $bundles = [ new Kozikaza\MindbazBundle\MindbazBundle(), // ... ]; // ... }
Configuration
Edit your configuration file to declare your Mindbaz mailer with credentials & campaigns:
# config.yml swiftmailer: default_mailer: direct mailers: direct: transport: "%mailer_transport%" host: "%mailer_host%" username: "%mailer_user%" password: "%mailer_password%" port: "%mailer_port%" spool: type: memory mindbaz: id_site: 123 # Must be integer username: foo password: p4$$w0rd campaigns: register: 123 forgot-password: 456
Don't forget to change credentials & campaigns in previous example!
Credits
Created by David DELEVOYE & Vincent CHALAMON.