Skip to content

Symfony bundle for sending email notifications upon code deployment

License

Notifications You must be signed in to change notification settings

headsnet/deploy-notify-bundle

Repository files navigation

Symfony Deployment Notifications

Send email notifications to one or more recipients using a simple console command that can be executed by your deployment process.

The notification can be sent to one or more recipients, and can optionally include the application change log file in the email content.

Installation

Install with Composer

composer require headsnet/deployment-notification-bundle

Add bundle to AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Headsnet\DeployNotifyBundle\HeadsnetDeployNotifyBundle(),
    );
}

Configuration

Add required configuration in app/config.yml

headsnet_deploy_notify:
  app_name: My Application
  email:
    sender_email: [email protected]
  recipients:
    - { name: Joe Bloggs, email: [email protected] }
    - { name: John Smith, email: [email protected] }

You can optionally include a change log file in the email template. Just specify the name of the change log file:

headsnet_deploy_notify:
  changelog:
    filename: CHANGES.md

Markdown files ending with a .md extension will automatically be parsed in to HTML.

Usage

Simply execute the console command from your chosen deployment system.

bin/console headsnet:deploy:notify

Configuration Reference

headsnet_deploy_notify:
	app_name:                 ~  # Required
	email:
	    sender_email:         ~  # Required
	    sender_name:          '' # Optional
	    subject:              'Deployment Notification'
	changelog:
	    filename:             ~  # If specified, changelog contents will be included in email
	    path:                 /  # Default is project root dir
	    public_url:           ~  # Optionally add link to changelog in email
	recipients:
	    - { name: ~, email: ~ }
	    - { name: ~, email: ~ }

Contributing

Contributions are welcome. Please submit via pull requests.

About

Symfony bundle for sending email notifications upon code deployment

Resources

License

Stars

Watchers

Forks

Packages

No packages published