<?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-2020 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";
if( empty( $params['email_headers']['Reply-To'] ) )
{ // Display the message below only when replying is not allowed to current email message,
// usually for email messages from anonymous users:
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";
if( ! empty( $params['recipient_User'] ) )
{ // Display a login only for registered User:
echo sprintf( T_( 'Your login on %s is: $login$' ), $Settings->get( 'notification_short_name' ) );
}
echo "\n\n";
if( ! empty( $params['recipient_User'] ) || ! empty( $params['comment_ID'] ) )
{ // Display info to unsubscribe registered or anonymous user:
echo T_( 'Too many emails?' )."\n";
echo sprintf( T_('To edit your email notification preferences, click here: %s'), get_notifications_url( '&', $recipient_user_ID, ( empty( $params['comment_ID'] ) ? NULL : $params['comment_ID'] ) ) );
if( !empty( $params['unsubscribe_text'] ) )
{ // Display the unsubscribe message with link
echo "\n".$params['unsubscribe_text'];
}
echo "\n\n";
}
echo 'Powered by b2evolution'."\n";
?>