flowcode/notificationbundle

This is a bundle for notifications for symfony

Installs: 1 411

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 5

Forks: 0

Open Issues: 0

Type:symfony-bundle

v1.0.0 2017-07-10 21:03 UTC

This package is not auto-updated.

Last update: 2024-04-27 15:37:08 UTC


README

This is a bundle for notifications for symfony

To use mandrill we use Slot/MandrillBundle.

ref: https://github.com/slot/MandrillBundle add this:

<?php
// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Slot\MandrillBundle\SlotMandrillBundle(),
    );
}

To yor config.yml

slot_mandrill:
    api_key: "%mandrill_api_key%"
    disable_delivery: true # useful for dev/test environment. Default value is 'false'
    # debug: passed to \Mandrill causing it to output curl requests. Useful to see output
    # from CLI script. Default value is 'false'
    debug: true
    default:
        sender: info@example.com
        sender_name: "%mandrill_api_key%" # Optionally define a sender name (from name)
        subaccount: Project # Optionally define a subaccount to use
    proxy:
        use: true # when you are behing a proxy. Default value is 'false'
        host: example.com
        port: 80
        user: john
        password: doe123