Verteilerlisten, Mailsystem
This commit is contained in:
@ -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");
|
||||
|
Reference in New Issue
Block a user