31 lines
1.0 KiB
PHP
31 lines
1.0 KiB
PHP
<?php use_helper('Date','stApplication', 'stUrl' ) ?>
|
|
|
|
<?php $smarty->assign('host', $sf_request->getHost()) ?>
|
|
|
|
<?php $smarty->assign('user_name', $user->getUsername()) ?>
|
|
|
|
<?php $smarty->assign('user_id', $user->getId()) ?>
|
|
|
|
<?php $smarty->assign('user_head', $head) ?>
|
|
|
|
<?php $smarty->assign('user_foot', $foot) ?>
|
|
|
|
|
|
<?php $smarty->assign('bg_header_color', $mail_config->get('bg_header_color')) ?>
|
|
|
|
<?php $smarty->assign('bg_footer_color', $mail_config->get('bg_footer_color')) ?>
|
|
|
|
<?php $smarty->assign('bg_action_color', $mail_config->get('bg_action_color')) ?>
|
|
|
|
<?php $smarty->assign('bg_action_link_color', $mail_config->get('bg_action_link_color')) ?>
|
|
|
|
<?php $smarty->assign('link_color', $mail_config->get('link_color')) ?>
|
|
|
|
<?php $smarty->assign('logo', $mail_config->get('logo')) ?>
|
|
|
|
|
|
<?php $smarty->assign('user_link', st_url_for('@stGoToUser?user='.$user->getId(), true,'backend')) ?>
|
|
|
|
<?php $smarty->assign('user_created_at', date("d-m-Y H:i", strtotime($user->getCreatedAt()))) ?>
|
|
|
|
<?php $smarty->display('user_send_new_user_to_admin_html_mail.html') ?>
|