<?php

/**
 * News notification extension for Contao
 *
 * Copyright (c) 2016 Benjamin Roth
 *
 * @link    http://www.esales-media.de
 * @license commercial
 */

$GLOBALS['NOTIFICATION_CENTER']['NOTIFICATION_TYPE']['contao']['news_submitted'] = array
(
  'recipients'    => array
  (
    'member_email' // The email address of the recipient
  ),
  'email_text'    => array
  (
    'member_firstname', // The firstname of the recipient
    'member_lastname', // The lastname of the recipient
    'news_topics' // The titles of all new news
  ),
  'email_html'    => array
  (
    'member_firstname', // The firstname of the recipient
    'member_lastname', // The lastname of the recipient
    'news_topics_html', // The titles of all new news
    'news_topics' // The titles of all new news
  )
);

$GLOBALS['TL_CRON']['hourly'][]    = array('eSM_nc_news\NewsNotifications', 'sendNotifications');