<div class="email_footer"<?php 
echo emailskin_style('div.email_footer');
?>
>

<?php 
echo '<p' . emailskin_style('.p') . '><b>' . T_('Please do not reply to this email!') . '</b><br />' . "\n";
echo sprintf(T_('This message was automatically generated by %s running on <a %s>%s</a>.'), $app_name, 'href="' . $baseurl . '"' . emailskin_style('.a'), $Settings->get('notification_short_name'));
echo "<br />\n";
echo sprintf(T_('Your login on %s is: $login$'), $Settings->get('notification_short_name'));
echo ' &bull; ';
echo '<a href="' . get_lostpassword_url(false, '&amp;', false) . '"' . emailskin_style('.a') . '>' . T_('Lost password?') . '</a>';
echo "</p>\n";
echo '<p' . emailskin_style('.p') . '><b>' . T_('Too many emails?') . '</b><br />' . "\n";
echo sprintf(T_('To configure the emails you receive, click here: <a %s>edit notification preferences</a>.'), 'href="' . get_notifications_url('&amp;', $recipient_user_ID) . '"' . emailskin_style('.a'));
if (!empty($params['unsubscribe_text'])) {
    // Display the unsubscribe message with link
    echo "<br />\n";
    echo $params['unsubscribe_text'];
}
echo "</p>\n";
echo '<p' . emailskin_style('.p+p.center') . '><img' . emailskin_style('.img+img.b2evo') . ' src="' . $rsc_url . 'img/powered-by-b2evolution-120t.gif" alt="Powered by b2evolution" /></p>';
?>

</div>

</div><?php 
/* End of "div.email_wrap"*/
?>
</body>
<?php

/**
 * This is included into every email to provide footer text, including a quick unsubscribe link.
 *
 * For more info about email skins, see: http://b2evolution.net/man/themes-templates-skins/email-skins/
 *
 * b2evolution - {@link http://b2evolution.net/}
 * Released under GNU GPL License - {@link http://b2evolution.net/about/gnu-gpl-license}
 * @copyright (c)2003-2015 by Francois Planque - {@link http://fplanque.com/}
 */
if (!defined('EVO_MAIN_INIT')) {
    die('Please, do not access this page directly.');
}
global $baseurl, $app_name, $Settings;
// Default params:
$params = array_merge(array('unsubscribe_text' => '', 'recipient_User' => NULL), $params);
$recipient_user_ID = empty($params['recipient_User']) ? NULL : $params['recipient_User']->ID;
echo "\n\n-- \n";
echo T_('Please do not reply to this email!') . "\n";
echo sprintf(T_('This message was automatically generated by %s running on %s: %s.'), $app_name, $Settings->get('notification_short_name'), $baseurl) . "\n";
echo sprintf(T_('Your login on %s is: $login$'), $Settings->get('notification_short_name'));
echo "\n\n";
echo T_('Too many emails?') . "\n";
echo sprintf(T_('To edit your email notification preferences, click here: %s'), get_notifications_url('&amp;', $recipient_user_ID));
if (!empty($params['unsubscribe_text'])) {
    // Display the unsubscribe message with link
    echo "\n" . $params['unsubscribe_text'];
}
echo "\n\n" . 'Powered by b2evolution' . "\n";