2017 © Pedro Peláez
 

symfony-bundle messanger-bundle

Messanger Bundle

image

igdr/messanger-bundle

Messanger Bundle

  • Friday, January 8, 2016
  • by igdr
  • Repository
  • 1 Watchers
  • 0 Stars
  • 5,746 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 4 % Grown

The README.md

Messanger Bundle

Installation

Add the bundle to your composer.json:, (*1)

"igdr/messanger-bundle" : "dev-master"

and run:, (*2)

php composer.phar update

Then add the MessangerBundle to your application kernel:, (*3)

// app/IgdrKernel.php
public function registerBundles()
{
    return array(
        // ...
        new Igdr\Bundle\MessangerBundle\IgdrMessangerBundle(),
        new Symfony\Bundle\SwiftmailerBundle\SwiftmailerBundle(),
        // ...
    );
}

Add parameters to app/config/parameters.ini, (*4)

mailer_transport: smtp
mailer_host: 127.0.0.1
mailer_user: null
mailer_password: null

Add swiftmailer configuration to app/config/config.yml, (*5)

swiftmailer:
    transport: "%mailer_transport%"
    host:      "%mailer_host%"
    username:  "%mailer_user%"
    password:  "%mailer_password%"

igdr_messanger:
    email: 
        from: text@example.com
        from_name: example

The Versions

08/01 2016

dev-master

9999999-dev

Messanger Bundle

  Sources   Download

The Requires

 

igdr messanger