Files
grzanieplus.pl/apps/frontend/modules/stUser/templates/sendNewPasswordToUserHtmlMail.php
2025-03-12 17:06:23 +01:00

19 lines
1006 B
PHP

<?php
use_helper('Date','stApplication', 'stUrl');
$smarty->assign('host', $sf_request->getHost());
$smarty->assign('user_name', $user->getUsername());
$smarty->assign('user_password', $password);
$smarty->assign('user_head', $head);
$smarty->assign('user_foot', $foot);
$smarty->assign('user_content_head', $head_content);
$smarty->assign('user_content_foot', $foot_content);
$smarty->assign('user_link', st_url_for('@stGoToLogin', 'absolute=true for_app=frontend'));
$smarty->assign('bg_header_color', $mail_config->get('bg_header_color'));
$smarty->assign('bg_footer_color', $mail_config->get('bg_footer_color'));
$smarty->assign('bg_action_color', $mail_config->get('bg_action_color'));
$smarty->assign('bg_action_link_color', $mail_config->get('bg_action_link_color'));
$smarty->assign('link_color', $mail_config->get('link_color'));
$smarty->assign('logo', $mail_config->get('logo'));
$smarty->assign('date', date("d-m-Y H:i"));
$smarty->display('user_send_new_password_to_user_html_mail.html');