2017 © Pedro Peláez
 

symfony-bundle utilities-bundle

image

multifinger/utilities-bundle

  • Thursday, June 28, 2018
  • by multifinger
  • Repository
  • 1 Watchers
  • 0 Stars
  • 27 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 50 % Grown

The README.md

utilities-bundle

Usefull symfony code. That applicable to any web-project. Project created to reuse code between different symfony projects. Feature added than required., (*1)

Mail cluster

To enable mail cluster add service with ClusterMailer:, (*2)

app.mailer:
    class:                      Multifinger\UtilitiesBundle\Service\ClusterMailer
    arguments:                  ['@multifinger.app_settings', %multifinger_mail_nodes%]

optionally add whitelist:, (*3)

app.mailer:
...
    calls:
        - [setWhitelist, [email@for.test]]

or blacklist:, (*4)

app.mailer:
...
    calls:
        - [setBlacklist, [some@email, another@email]]

use this service as usual Swift_Mailer (currently only send method supported), (*5)

The Versions