19 lines
1007 B
PHP
19 lines
1007 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_plain_mail.html'); |