| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
exit; |
| 4 |
} |
| 5 |
// phpcs:disable WordPress.WP.EnqueuedResources.NonEnqueuedStylesheet -- HTML email body cannot use wp_enqueue_style(). |
| 6 |
// phpcs:disable PluginCheck.CodeAnalysis.Offloading.OffloadedContent -- Email clients require absolute URLs for fonts/images. |
| 7 |
?><!DOCTYPE html> |
| 8 |
<html lang="en"> |
| 9 |
<head> |
| 10 |
<meta charset="UTF-8"> |
| 11 |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 12 |
<title>BetterDocs Email Template</title> |
| 13 |
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap" rel="stylesheet"> |
| 14 |
<style type="text/css"> |
| 15 |
.betterdocs-email-body, .betterdocs-wrapper-body { |
| 16 |
font-size: 14px; |
| 17 |
font-family: 'Roboto', sans-serif; |
| 18 |
} |
| 19 |
.betterdocs-box-analytics-parent { |
| 20 |
padding: 0px 25px; |
| 21 |
} |
| 22 |
.betterdocs-table-heading { |
| 23 |
background-color: rgb(229, 236, 242); |
| 24 |
} |
| 25 |
.betterdocs-table-heading th:first-child { |
| 26 |
width: 60%; |
| 27 |
} |
| 28 |
</style> |
| 29 |
</head> |
| 30 |
<body class="betterdocs-wrapper-body" style="background-color: #fff; margin: 0; padding: 0; font-family: 'Roboto';"> |
| 31 |
<table class="betterdocs-email-wrapper" cellpadding="50" cellspacing="0" border="0" width="100%" align="center" bgcolor="#fff"> |
| 32 |
<tbody> |
| 33 |
<tr> |
| 34 |
<td align="center" style="padding-top:0px;padding-bottom:20px;"> |
| 35 |
<table class="betterdocs-email-body" cellpadding="35" cellspacing="0" border="0" width="700" align="center" bgcolor="#FFF"> |
| 36 |
<tbody> |