1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-22 22:25:31 +02:00

Fixes #3303 - Mailout - display message when no email address sources are selected

This commit is contained in:
Tijn Kuyper
2019-10-24 14:33:23 +02:00
parent 82cddf9b84
commit 66c2014830
2 changed files with 7 additions and 0 deletions

View File

@@ -620,6 +620,12 @@ class mailoutAdminClass extends e107MailManager
{
$tabs = array();
// Check for selected email address sources
if(!$this->mailHandlers)
{
$text = "<span class='label label-warning'>".LAN_MAILOUT_259."</span>";
}
foreach($this->mailHandlers as $key => $m)
{