Files
code-cegled/_include/include_email.php
2025-05-24 18:56:48 +02:00

18 lines
239 B
PHP

<?php
if ($this->is_id()) {
# EMAIL LOG RÉSZLETEK
$email_log = new email_log();
$email_log->set_el_data_by_id($this->get_id());
$smarty->assign('email', $email_log);
$smarty->display('email.tpl');
} else {
}
?>