File: /var/www/apklausos/application/views/failedEmail/notification_message/_notification_message.php
<?php
/**
* View for the message of the meesage in the notification center
* @var array $failedEmailSurveyTitles
*
*
*/
?>
<p>
<?= nl2br((string) gT("Dear survey administrator, \nThere were one or more notification emails that failed to be sent. Please check the 'Failed email notifications' section in the survey(s) listed below.", 'unescaped')) ?>
</p>
<ul>
<?php
foreach ($failedEmailSurveyTitles as $surveyId => $surveyTitle) : ?>
<li>
<?= CHtml::link(
sprintf(gT("%s (ID: %s)"), $surveyTitle, $surveyId),
Yii::app()->createUrl("failedEmail/index/", ['surveyid' => $surveyId])
) ?>
</li>
<?php
endforeach; ?>
</ul>