<?php

declare(strict_types=1);

/*
* This file is part of newsmailer bundle for Contao.
*
* (c) Benjamin Roth
*
* @license LGPL-3.0-or-later
*/

$GLOBALS['NOTIFICATION_CENTER']['NOTIFICATION_TYPE']['contao']['news_submitted'] = array
(
    'recipients'    => array
    (
        'member_email', // The email address of the recipient
        'admin_email' // The email address of the recipient
    ),
    'email_sender_address'    => array
    (
        'member_email', // The email address of the recipient
        'admin_email' // The email address of the recipient
    ),
    'email_sender_name'    => array
    (
        'member_email', // The email address of the recipient
        'admin_email' // The email address of the recipient
    ),
    'email_subject'        => array
    (
        'domain',
        'member_email',
        'admin_email'
    ),
    '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
        'news_full' // 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_full_html', // The titles of all new news
        'news_topics', // The titles of all new news
        'news_full' // The titles of all new news
    )
);