<?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'] = array
(
  // Type
  'news_submitted'   => array
  (
    'recipients'    => array
    (
      'member_email' // The email address of the recipient
    ),
    'email_text'    => array
    (
      'news_topics' // The titles of all new news
    ),
    'email_html'    => array
    (
      'news_topics_html', // The titles of all new news
      'news_topics' // The titles of all new news
    )
  )
);