| Current File : /home/digitaw/www/wp-content/plugins/simple-history/templates/email-summary-report.php |
<?php
/**
* Template for weekly emails.
*/
defined( 'ABSPATH' ) || exit;
/**
* Filter to show the upsell.
*
* @param bool $show_upsell Whether to show the upsell.
* @return bool Whether to show the upsell.
*/
$show_upsell = apply_filters( 'simple_history/email_summary_report/show_upsell', false );
/**
* Filter to show the main core stats.
*
* @param bool $show_main_core_stats Whether to show the main core stats.
* @return bool Whether to show the main core stats.
*/
$show_main_core_stats = apply_filters( 'simple_history/email_summary_report/show_main_core_stats', true );
/**
* Filter to add content after the core stats.
* Can be used by add-ons to add content after the core stats.
*
* @param string $content_after_core_stats The content to add after the core stats.
* @return string The content to add after the core stats.
*/
$content_after_core_stats = apply_filters( 'simple_history/email_summary_report/content_after_core_stats', '' );
// Ensure $args is defined and is an array with fallback values for all used data.
if ( ! isset( $args ) ) {
$args = [];
}
$args = wp_parse_args(
$args,
[
'email_subject' => __( 'Website Activity Summary', 'simple-history' ),
'total_events_this_week' => 0,
'most_active_days' => [],
'busiest_day_name' => __( 'No activity', 'simple-history' ),
'date_range' => '',
'site_url' => '',
'site_name' => '',
'site_url_domain' => '',
'successful_logins' => 0,
'failed_logins' => 0,
'posts_created' => 0,
'posts_updated' => 0,
'plugin_activations' => 0,
'plugin_deactivations' => 0,
'wordpress_updates' => 0,
'history_admin_url' => '',
'settings_url' => '',
]
);
?>
<!DOCTYPE html>
<html lang="<?php echo esc_attr( get_locale() ); ?>" xmlns="http://www.w3.org/1999/xhtml" xmlns:o="urn:schemas-microsoft-com:office:office">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="x-apple-disable-message-reformatting">
<title><?php echo esc_html( $args['email_subject'] ); ?></title>
<!--[if mso]>
<noscript>
<xml>
<o:OfficeDocumentSettings>
<o:PixelsPerInch>96</o:PixelsPerInch>
</o:OfficeDocumentSettings>
</xml>
</noscript>
<![endif]-->
<style>
table, td, div, h1, p {font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;}
/* Mobile styles */
@media only screen and (max-width: 599px) {
.email-container {
width: calc(100% - 40px) !important;
}
.fluid {
max-width: 100% !important;
width: 100% !important;
height: auto !important;
}
.mobile-padding {
padding: 20px !important;
}
.mobile-text {
font-size: 16px !important; line-height: 24px !important;
}
.mobile-header {
font-size: 26px !important;
line-height: 32px !important;
}
.mobile-stat {
display: block !important;
width: 100% !important;
margin-bottom: 10px !important;
}
.mobile-breakdown {
display: block !important;
width: 48% !important;
margin-bottom: 15px !important;
}
}
</style>
</head>
<body style="margin: 0; padding: 0; width: 100%; word-break: break-word; -webkit-font-smoothing: antialiased; background-color: #FFF4E4;">
<div role="article" aria-roledescription="email" lang="<?php echo esc_attr( get_locale() ); ?>"
style="text-size-adjust: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; background-color: #FFF4E4;">
<!-- Visually Hidden Preheader Text -->
<div style="display: none; font-size: 1px; color: #fefefe; line-height: 1px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden;">
<?php
$busiest_day = ! empty( $args['busiest_day_name'] ) ? $args['busiest_day_name'] : __( 'No activity', 'simple-history' );
// Show different message if there was no activity.
if ( $args['total_events_this_week'] === 0 ) {
echo esc_html( __( 'No activity last week', 'simple-history' ) );
} else {
echo esc_html(
sprintf(
/* translators: 1: number of events, 2: day of the week */
__( '%1$d events last week • %2$s was the busiest day', 'simple-history' ),
$args['total_events_this_week'],
$busiest_day
)
);
}
?>
</div>
<!-- Email Container -->
<table align="center" role="presentation" cellspacing="0" cellpadding="0" border="0" width="500" style="margin: auto;" class="email-container">
<!-- Logo on Background -->
<tr>
<td style="padding: 40px 0 20px; text-align: left;">
<img src="https://simple-history.com/wp/wp-content/uploads/2023/09/SH_logo_NEW-768x156.png"
width="200" height="41" alt="<?php echo esc_attr( __( 'Simple History', 'simple-history' ) ); ?>"
border="0" style="height: auto; font-family: sans-serif; font-size: 15px; line-height: 15px; color: #333333; display: block;">
</td>
</tr>
<!-- White Container Starts -->
<tr>
<td style="background-color: #ffffff; border-radius: 8px 8px 0 0; box-shadow: 0 2px 8px rgba(0,0,0,0.1);" class="email-container">
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td style="padding: 30px 40px 40px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; text-align: center; background-color: #ffffff;"
class="mobile-padding email-container" role="main">
<!-- Main Headline -->
<h1 style="margin: 0 0 10px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 36px; line-height: 42px; color: #000000; font-weight: 600; text-align: left; text-wrap: balance;"
class="mobile-header">
<?php echo esc_html( __( 'Website activity summary', 'simple-history' ) ); ?>
</h1>
<!-- Date Range -->
<p style="margin: 0 0 30px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 14px; line-height: 18px; color: #000000; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; text-align: left;">
<?php echo esc_html( $args['date_range'] ); ?>
</p>
<!-- Subtitle -->
<p style="margin: 0 0 10px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 18px; line-height: 26px; color: #000000; text-align: left;"
class="mobile-text">
<?php echo esc_html( __( 'Here\'s a summary of activity on your website.', 'simple-history' ) ); ?>
</p>
<p style="margin: 0 0 40px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 18px; line-height: 26px; color: #000000; text-align: left;"
class="mobile-text">
<?php
$allowed_html = array(
'a' => array(
'href' => array(),
'style' => array(),
),
);
$link_style = 'style="color: #0040FF; text-decoration: underline;"';
echo wp_kses(
sprintf(
/* translators: 1: URL to history page, 2: link style attribute including style="" */
__( '<a href="%1$s" %2$s>View the Simple History event log</a> on your website for a detailed history of changes and activities.', 'simple-history' ),
esc_url( $args['history_admin_url'] ),
$link_style
),
$allowed_html
);
?>
</p>
<?php if ( $show_main_core_stats ) { ?>
<!-- Key Metrics Section -->
<div style="margin-bottom: 40px;">
<!-- Website Information -->
<div style="margin-bottom: 30px; padding-bottom: 30px; border-bottom: 2px solid #000000;">
<h2 style="margin: 0 0 10px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 20px; line-height: 26px; color: #000000; font-weight: 600; text-align: left;">
<?php echo esc_html( __( 'Website', 'simple-history' ) ); ?>
</h2>
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 24px; line-height: 28px; color: #000000; font-weight: 700; text-align: left; margin-bottom: 5px;">
<a href="<?php echo esc_url( $args['site_url'] ); ?>" style="color: #0040FF; text-decoration: none;">
<?php echo esc_html( $args['site_name'] ); ?>
</a>
</div>
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 16px; line-height: 20px; color: #666; text-align: left;">
<a href="<?php echo esc_url( $args['site_url'] ); ?>" style="color: #0040FF; text-decoration: none;">
<?php echo esc_html( $args['site_url_domain'] ); ?>
</a>
</div>
</div>
<!-- Period Information -->
<div style="margin-bottom: 30px; padding-bottom: 30px; border-bottom: 2px solid #000000;">
<h2 style="margin: 0 0 10px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 20px; line-height: 26px; color: #000000; font-weight: 600; text-align: left;">
<?php echo esc_html( __( 'Period', 'simple-history' ) ); ?>
</h2>
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 18px; line-height: 22px; color: #000000; font-weight: 600; text-align: left;">
<?php echo esc_html( $args['date_range'] ); ?>
</div>
</div>
<!-- This Week's Activity -->
<div style="margin-bottom: 30px; padding-bottom: 30px; border-bottom: 2px solid #000000;">
<h2 style="margin: 0 0 10px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 20px; line-height: 26px; color: #000000; font-weight: 600; text-align: left;">
<?php echo esc_html( __( 'Total events', 'simple-history' ) ); ?>
</h2>
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 36px; line-height: 42px; color: #000000; font-weight: 700; text-align: left;">
<?php echo esc_html( number_format_i18n( $args['total_events_this_week'] ) ); ?>
</div>
</div>
<!-- Weekly Activity Breakdown -->
<div style="margin-bottom: 30px; padding-bottom: 30px; border-bottom: 2px solid #000000;">
<h2 style="margin: 0 0 15px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 20px; line-height: 26px; color: #000000; font-weight: 600; text-align: left;">
<?php echo esc_html( __( 'Event count by day', 'simple-history' ) ); ?>
</h2>
<?php
// Create a lookup array from most_active_days for easy access.
// Data is already keyed by day number (0-6) to avoid language issues.
$day_counts = [];
foreach ( $args['most_active_days'] as $day ) {
if ( isset( $day['day_number'] ) && isset( $day['count'] ) ) {
$day_counts[ $day['day_number'] ] = $day['count'];
}
}
// Build days array in chronological order based on actual date range.
$ordered_days = [];
$start_timestamp = isset( $args['date_from_timestamp'] ) ? $args['date_from_timestamp'] : strtotime( '-6 days' );
$end_timestamp = isset( $args['date_to_timestamp'] ) ? $args['date_to_timestamp'] : time();
// Create DateTimeImmutable objects for iteration.
$current_date = ( new DateTimeImmutable( '@' . $start_timestamp ) )->setTimezone( wp_timezone() );
$end_date = ( new DateTimeImmutable( '@' . $end_timestamp ) )->setTimezone( wp_timezone() );
// Iterate through each day in the range.
while ( $current_date <= $end_date ) {
$day_name = $current_date->format( 'l' ); // Full day name (e.g., "Monday").
$day_number = (int) $current_date->format( 'w' ); // Day of week (0=Sunday, 6=Saturday).
// Get full formatted date for tooltip.
$full_date = wp_date(
sprintf(
/* translators: Full date format for tooltip: "Thursday 2 October 2025" */
__( 'l j F Y', 'simple-history' )
),
$current_date->getTimestamp()
);
// Get date in Y-m-d format for URL parameters.
$date_ymd = $current_date->format( 'Y-m-d' );
$ordered_days[] = [
'name' => $day_name,
'key' => $day_number,
'count' => isset( $day_counts[ $day_number ] ) ? $day_counts[ $day_number ] : 0,
'full_date' => $full_date,
'date_ymd' => $date_ymd,
];
// Move to next day.
$current_date = $current_date->modify( '+1 day' );
}
?>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<?php
$day_index = 0;
$total_days = count( $ordered_days );
foreach ( $ordered_days as $day_data ) {
// Build URL with date filter for this specific day.
$day_url = add_query_arg(
[
'date' => 'customRange',
'from' => $day_data['date_ymd'],
'to' => $day_data['date_ymd'],
],
$args['history_admin_url']
);
?>
<td style="width: 14.28%; vertical-align: top; text-align: center;<?php echo $day_index < ( $total_days - 1 ) ? ' padding-right: 8px;' : ''; ?>" title="<?php echo esc_attr( $day_data['full_date'] ); ?>">
<a href="<?php echo esc_url( $day_url ); ?>" style="color: #0040FF; text-decoration: none; display: block;">
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 12px; color: #000000; text-align: center; font-weight: 500;">
<?php echo esc_html( substr( $day_data['name'], 0, 3 ) ); ?>
</div>
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 18px; line-height: 22px; color: #0040FF; font-weight: 700; text-align: center; margin-top: 2px;">
<?php echo esc_html( number_format_i18n( $day_data['count'] ) ); ?>
</div>
</a>
</td>
<?php
++$day_index;
}
?>
</tr>
</table>
</div>
<!-- Posts Section -->
<div style="margin-bottom: 30px; padding-bottom: 30px; border-bottom: 2px solid #000000;">
<h2 style="margin: 0 0 15px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 20px; line-height: 26px; color: #000000; font-weight: 600; text-align: left;">
<?php echo esc_html( __( 'Posts and Pages', 'simple-history' ) ); ?>
</h2>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td style="width: 50%; vertical-align: top; padding-right: 15px;">
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 14px; color: #000000; text-align: left; font-weight: 500; margin-bottom: 5px;">
<?php echo esc_html( __( 'Posts created', 'simple-history' ) ); ?>
</div>
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 24px; line-height: 28px; color: #000000; font-weight: 700; text-align: left;">
<?php echo esc_html( number_format_i18n( $args['posts_created'] ) ); ?>
</div>
</td>
<td style="width: 50%; vertical-align: top; padding-left: 15px;">
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 14px; color: #000000; text-align: left; font-weight: 500; margin-bottom: 5px;">
<?php echo esc_html( __( 'Updates', 'simple-history' ) ); ?>
</div>
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 24px; line-height: 28px; color: #000000; font-weight: 700; text-align: left;">
<?php echo esc_html( number_format_i18n( $args['posts_updated'] ) ); ?>
</div>
</td>
</tr>
</table>
</div>
<!-- Users Section -->
<div style="margin-bottom: 30px; padding-bottom: 30px; border-bottom: 2px solid #000000;">
<h2 style="margin: 0 0 15px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 20px; line-height: 26px; color: #000000; font-weight: 600; text-align: left;">
<?php echo esc_html( __( 'Users', 'simple-history' ) ); ?>
</h2>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td style="width: 50%; vertical-align: top; padding-right: 15px;">
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 14px; color: #000000; text-align: left; font-weight: 500; margin-bottom: 5px;">
<?php echo esc_html( __( 'Successful logins', 'simple-history' ) ); ?>
</div>
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 24px; line-height: 28px; color: #000000; font-weight: 700; text-align: left;">
<?php echo esc_html( number_format_i18n( $args['successful_logins'] ) ); ?>
</div>
</td>
<td style="width: 50%; vertical-align: top; padding-left: 15px;">
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 14px; color: #000000; text-align: left; font-weight: 500; margin-bottom: 5px;">
<?php echo esc_html( __( 'Failed logins', 'simple-history' ) ); ?>
</div>
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 24px; line-height: 28px; color: #000000; font-weight: 700; text-align: left;">
<?php echo esc_html( number_format_i18n( $args['failed_logins'] ) ); ?>
</div>
</td>
</tr>
</table>
</div>
<!-- Plugins Section -->
<div style="margin-bottom: 30px; padding-bottom: 30px; border-bottom: 2px solid #000000;">
<h2 style="margin: 0 0 15px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 20px; line-height: 26px; color: #000000; font-weight: 600; text-align: left;">
<?php echo esc_html( __( 'Plugins', 'simple-history' ) ); ?>
</h2>
<table role="presentation" cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td style="width: 50%; vertical-align: top; padding-right: 15px;">
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 14px; color: #000000; text-align: left; font-weight: 500; margin-bottom: 5px;">
<?php echo esc_html( __( 'Activations', 'simple-history' ) ); ?>
</div>
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 24px; line-height: 28px; color: #000000; font-weight: 700; text-align: left;">
<?php echo esc_html( number_format_i18n( $args['plugin_activations'] ) ); ?>
</div>
</td>
<td style="width: 50%; vertical-align: top; padding-left: 15px;">
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 14px; color: #000000; text-align: left; font-weight: 500; margin-bottom: 5px;">
<?php echo esc_html( __( 'Deactivations', 'simple-history' ) ); ?>
</div>
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 24px; line-height: 28px; color: #000000; font-weight: 700; text-align: left;">
<?php echo esc_html( number_format_i18n( $args['plugin_deactivations'] ) ); ?>
</div>
</td>
</tr>
</table>
</div>
<!-- WordPress Section -->
<div style="margin-bottom: 30px; padding-bottom: 30px; border-bottom: 2px solid #000000;">
<h2 style="margin: 0 0 10px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 20px; line-height: 26px; color: #000000; font-weight: 600; text-align: left;">
<?php echo esc_html( __( 'WordPress', 'simple-history' ) ); ?>
</h2>
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 14px; color: #000000; text-align: left; font-weight: 500; margin-bottom: 5px;">
<?php echo esc_html( __( 'Updates completed', 'simple-history' ) ); ?>
</div>
<div style="font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 36px; line-height: 42px; color: #000000; font-weight: 700; text-align: left;">
<?php echo esc_html( number_format_i18n( $args['wordpress_updates'] ) ); ?>
</div>
</div>
<?php } ?>
</div>
<?php echo wp_kses_post( $content_after_core_stats ); ?>
<!-- View All Events Button -->
<table role="presentation" cellspacing="0" cellpadding="0" border="0" style="margin: 0 auto;">
<tr>
<td>
<a href="<?php echo esc_url( $args['history_admin_url'] ); ?>"
style="background: #0040FF; border: 16px solid #0040FF; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 16px; line-height: 20px; text-decoration: none; color: #ffffff; display: block; border-radius: 6px; font-weight: 600;">
<?php echo esc_html( __( 'View Activity Log', 'simple-history' ) ); ?>
</a>
</td>
</tr>
</table>
<!-- Upsell Section -->
<?php
if ( $show_upsell ) {
?>
<div style="text-align: center; margin: 60px 0 25px; padding: 25px; background: linear-gradient(135deg, #FFE4EC 0%, #B4EDE2 100%); border-radius: 8px; border: 1px solid #B4EDE2;">
<h2 style="margin: 0 0 15px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 20px; line-height: 26px; color: #000000; font-weight: 600;">
<?php echo esc_html( __( 'Want More Insights?', 'simple-history' ) ); ?>
</h2>
<p style="margin: 0 0 20px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 18px; line-height: 22px; color: #000000;">
<?php echo esc_html( __( 'Simple History Premium includes detailed activity breakdowns, user insights, security monitoring, and weekly trends.', 'simple-history' ) ); ?>
</p>
<p style="margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 18px; line-height: 22px; color: #000000;">
<a href="https://simple-history.com/add-ons/premium/" style="color: #0040FF; text-decoration: underline; font-weight: 500;">
<?php echo esc_html( __( 'Learn More About Premium', 'simple-history' ) ); ?>
</a>
</p>
</div>
<?php
}
?>
</td>
</tr>
</table>
</td>
</tr>
</table>
<!-- Unsubscribe Text Outside White Container -->
<table align="center" role="presentation" cellspacing="0" cellpadding="0" border="0" width="500" style="padding: 40px 0;" class="email-container">
<tr>
<td style="padding: 0 40px; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; font-size: 12px; line-height: 16px; text-align: center; color: #000000;"
class="mobile-padding">
<p style="margin: 15px 0 0; font-size: 12px; color: #000000;">
<?php
echo esc_html(
sprintf(
/* translators: %s: Site name */
__( 'You\'re receiving this email because you\'re listed as a recipient in the Simple History email report settings for %s.', 'simple-history' ),
$args['site_name']
)
);
?>
</p>
<p style="margin: 10px 0 0; font-size: 12px; color: #000000;">
<?php
$allowed_html = array(
'a' => array(
'href' => array(),
'style' => array(),
),
);
$link_style = 'style="color: #000000; text-decoration: underline;"';
echo wp_kses(
sprintf(
/* translators: 1: URL to settings page, 2: link style attribute including style="" */
__( 'To stop receiving these emails, go to <a href="%1$s" %2$s>Settings → Simple History → Email Reports</a> in your WordPress admin and remove your email address.', 'simple-history' ),
esc_url( $args['settings_url'] ),
$link_style
),
$allowed_html
);
?>
</p>
</td>
</tr>
</table>
</div>
</body>
</html>