2017 © Pedro Peláez
 

silverstripe-module silverstripe-notifications

Send CMS editable system notifications from code

image

sheadawson/silverstripe-notifications

Send CMS editable system notifications from code

  • Friday, May 5, 2017
  • by sheadawson
  • Repository
  • 1 Watchers
  • 0 Stars
  • 230 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 9 Forks
  • 0 Open issues
  • 8 Versions
  • 0 % Grown

The README.md

SilverStripe Notifications Module

Send CMS managed system email notifications from code., (*1)

Maintainer Contacts

Requirements

  • SilverStripe 3.1 +

Installation Instructions

composer require sheadawson/silverstripe-notifications

Creating System Notifications

1)

In your _config yml file, add an identifier for each notification you require. This allows you to lookup Notification objects in the database from your code., (*2)

SystemNotification:
  identifiers:
    - 'NAME_OF_NOTIFICATION1'
    - 'NAME_OF_NOTIFICATION2'

2)

Add the NotifiedOn interface to any dataobjects that are relevant to the notifications you will be sending. This is required so the Notifications module can look up the below methods on your object to send the notification., (*3)

class MyDataObject extends DataObject implements NotifiedOn {
    ...

Define the following interface methods on the Object being notified on., (*4)

/**
 * Return a list of available keywords in the format 
 * array('keyword' => 'A description') to help users format notification fields
 * @return array
 */
public function getAvailableKeywords();

```php /** * Gets an associative array of data that can be accessed in * notification fields and templates * @return array */ public function getNotificationTemplateData();, (*5)


Note: the follow template data is automatically included: * $ThemeDir * $SiteConfig * $MyDataObject (whatever the ClassName of your NotifiedOn DataObject is) * $Member (The Member object this message is being sent to) ```php /** * Gets the list of recipients for a given notification event, based on this object's * state. * $event The identifier of the event that triggered this notification * @return array An array of Member objects */ public function getRecipients($event);

Note: getRecipients() can return an array of any objects, as long as they have an Email property or method, (*6)

3)

Create a notification in the Notifications model admin, in the CMS., (*7)

4)

Send the notification from your code, where $contextObject is an instance of the DataObject being NotifiedOn, (*8)

singleton('NotificationService')->notify('NOTIFICATION_IDENTIFIER', $contextObject);

Templates

Notifications can be rendered with .ss templates. This is useful if you want to have a header/footer in your email notifications. You can either specify a template on a per/notification basis in the CMS, and/or set a default template for all notifications to be rendered with:, (*9)

SystemNotification:
  default_template: EmailNotification

In your templates, you render the notification text with the $Body variable., (*10)

Configuration

You will probably want to configure a send_from email address -, (*11)

EmailNotificationSender:
  send_notifications_from: 'notifications@example.com'

TODO

  • Test with QueuedJobs module for handling large amounts of notifications in configurable batches/queues

The Versions

05/05 2017

dev-patch-1

dev-patch-1

Send CMS editable system notifications from code

  Sources   Download

BSD-3-Clause

The Requires

 

silverstripe notifications

18/02 2016

dev-master

9999999-dev

Send CMS editable system notifications from code

  Sources   Download

BSD-3-Clause

The Requires

 

silverstripe notifications

14/09 2015

1.0.x-dev

1.0.9999999.9999999-dev

Send CMS editable system notifications from code

  Sources   Download

BSD-3-Clause

The Requires

 

silverstripe notifications

15/07 2015

1.0.2

1.0.2.0

Send CMS editable system notifications from code

  Sources   Download

BSD-3-Clause

The Requires

 

silverstripe notifications

28/02 2015

1.0.1

1.0.1.0

Send CMS editable system notifications from code

  Sources   Download

BSD-3-Clause

The Requires

 

silverstripe notifications

17/02 2015

1.0.0

1.0.0.0

Send CMS editable system notifications from code

  Sources   Download

BSD-3-Clause

The Requires

 

silverstripe notifications

30/05 2014

0.2.0

0.2.0.0

Send CMS editable system notifications from code

  Sources   Download

BSD-3-Clause

The Requires

 

by Shea Dawson

silverstripe notifications

27/05 2014

0.1.0

0.1.0.0

Send CMS managed system notifications from code

  Sources   Download

BSD-3-Clause

The Requires

 

by Shea Dawson

silverstripe notifications