107 lines
5.7 KiB
PHP
107 lines
5.7 KiB
PHP
<?php
|
|
/**
|
|
* Email template for the Email Notification about potentialy broken sites after running updates.
|
|
*
|
|
* To overwrite this template, make a new template with the same filename and place it in the ../wp-content/uploads/mainwp/templates/email/ directory.
|
|
*
|
|
* @package MainWP/Dashboard
|
|
*/
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
$child_site_tokens = false;
|
|
|
|
if ( empty( $heading ) ) {
|
|
$heading = 'Sites Check';
|
|
}
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=<?php bloginfo( 'charset' ); ?>" />
|
|
<title><?php echo esc_html( get_bloginfo( 'name', 'display' ) ); ?></title>
|
|
</head>
|
|
<body offset="0" style="margin:0;background-color:#f7f7f7;font-family:'Lato',sans-serif;">
|
|
<div id="mainwp-email-wrapper" style="padding: 30px 0;">
|
|
<?php
|
|
/**
|
|
* HTTP Check Email Header
|
|
*
|
|
* Fires at the top of the HTTP check (after update checks) email template.
|
|
*
|
|
* @since 4.1
|
|
*/
|
|
do_action( 'mainwp_http_check_email_header' );
|
|
?>
|
|
<table style="border:0;height:100%;padding:0;border-spacing:0;margin-top:30px;margin-bottom:30px;">
|
|
<tr>
|
|
<td style="vertical-align:top;text-align:center;">
|
|
<table style="border:0;padding:0;border-spacing:0;width:600px;background-color:#ffffff;border:1px solid #dedede;box-shadow: 0 1px 4px rgba(0,0,0,0.1);border-radius:3px;padding-bottom:30px;">
|
|
<!-- Header -->
|
|
<tr>
|
|
<td style="vertical-align:top;text-align:center;">
|
|
<table style="border:0;width:600px;padding:0;border-spacing:0;">
|
|
<tr>
|
|
<td id="header_wrapper" style="padding: 36px 48px; display: block; background: #1c1d1b;">
|
|
<h1 style="text-align:center;color:#fff;"><?php echo esc_html( $heading ); ?></h1>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<!-- End Header -->
|
|
<!-- Body -->
|
|
<tr>
|
|
<td style="vertical-align:top;text-align:left;padding:30px 30px 0 30px;">
|
|
<strong><?php esc_html_e( 'Hi there', 'mainwp' ); ?>,</strong>
|
|
<p><?php esc_html_e( 'After running auto updates, following sites are not returning expected HTTP request response:', 'mainwp' ); ?></p>
|
|
<table style="border:0;width:100%;text-align:left;padding:0;border-spacing:0;font-size:11px; margin-bottom:30px;">
|
|
<thead style="background: #eee">
|
|
<tr>
|
|
<th style="padding:5px;text-align:left;">Site</th>
|
|
<th style="padding:5px;text-align:left;">Site URL</th>
|
|
<th style="padding:5px;text-align:left;">Status</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ( $sites_statuses as $item ) : ?>
|
|
<tr>
|
|
<td style="padding:10px;border-bottom: 1px solid #eee;"><?php echo esc_html( $item['name'] ); ?></td>
|
|
<td style="padding:10px;border-bottom: 1px solid #eee;"><a href="<?php echo esc_html( $item['url'] ); ?>" style="color:#7fb100;"><?php echo esc_html( $item['url'] ); ?></a></td>
|
|
<td style="padding:10px;border-bottom: 1px solid #eee;"><?php echo esc_html( $item['code'] ); ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="vertical-align:top;text-align:left;padding:30px 30px 0 30px;">
|
|
<a href="<?php echo esc_url( admin_url( 'admin.php?page=MonitoringSites' ) ); ?>" style="color:#7fb100;text-decoration:none;"><?php echo esc_html__( 'Click here', 'mainwp' ); ?></a> <?php echo esc_html__( 'to check your site status.', 'mainwp' ); ?>
|
|
</td>
|
|
</tr>
|
|
<!-- End Body -->
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<div style="text-align:center;font-size:11px;margin-bottom:30px;">
|
|
<?php esc_html_e( 'Developed by ', 'mainwp' ); ?> <a href="https://mainwp.com/" style="color:#7fb100;"><?php esc_html_e( 'MainWP', 'mainwp' ); ?></a>. <?php esc_html_e( 'Sent from your Dashboard.', 'mainwp' ); // NOSONAR - noopener - open safe. ?>
|
|
</div>
|
|
<?php
|
|
/**
|
|
* HTTP Check Email Footer
|
|
*
|
|
* Fires at the bottom of the HTTP check (after update checks) email template.
|
|
*
|
|
* @since 4.1
|
|
*/
|
|
do_action( 'mainwp_http_check_email_footer' );
|
|
?>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
<?php
|