Verteilerlisten, Mailsystem

This commit is contained in:
aschwarz
2023-04-28 09:41:23 +02:00
parent 3d58070a69
commit c69b2b8b5e
16 changed files with 817 additions and 65 deletions

View File

@ -27,6 +27,18 @@ require_once "../language/german.inc.php";
$table_data[] = $row;
}
$smarty->assign('table_data', $table_data);
# Gespeicherte Verteiler
$query1 = "SELECT mvid, bezeichnung
FROM jumi_mailverteiler
ORDER BY mvid ASC";
$result1 = $db->query($query1) or die("Cannot execute query");
while ($row1 = $result1->fetch_array()) {
$table_data1[] = $row1;
}
$smarty->assign('table_data1', $table_data1);
$smarty->assign('action', "$action");
$smarty->display("modern/dashboard/$templatename");