84 lines
1.5 KiB
PHP
84 lines
1.5 KiB
PHP
<?php
|
|
// Exit if accessed directly.
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
?>
|
|
<style type="text/css">
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
|
|
font-size: 16px;
|
|
line-height: 1.6;
|
|
color: #333333;
|
|
background-color: #f5f5f5;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.email-container {
|
|
max-width: 600px;
|
|
margin: 0 auto;
|
|
background-color: #ffffff;
|
|
padding: 40px;
|
|
}
|
|
.email-header {
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
padding-bottom: 20px;
|
|
border-bottom: 1px solid #e0e0e0;
|
|
}
|
|
.email-header svg {
|
|
width: 200px;
|
|
height: auto;
|
|
max-width: 100%;
|
|
display: inline-block;
|
|
}
|
|
.email-content {
|
|
color: #333333;
|
|
}
|
|
.email-content p {
|
|
margin: 0 0 16px 0;
|
|
}
|
|
.email-content a {
|
|
color: #2271b1;
|
|
text-decoration: underline;
|
|
}
|
|
.email-content a:hover {
|
|
color: #135e96;
|
|
}
|
|
.email-cta {
|
|
text-align: center;
|
|
margin: 24px 0;
|
|
}
|
|
.email-button {
|
|
display: inline-block;
|
|
padding: 14px 28px;
|
|
background-color: #1DA867;
|
|
color: #ffffff !important;
|
|
text-decoration: none !important;
|
|
border-radius: 4px;
|
|
font-weight: 600;
|
|
font-size: 16px;
|
|
}
|
|
.email-button:hover {
|
|
background-color: #1ab56c;
|
|
color: #ffffff !important;
|
|
}
|
|
.email-footer {
|
|
margin-top: 40px;
|
|
padding-top: 20px;
|
|
border-top: 1px solid #e0e0e0;
|
|
font-size: 12px;
|
|
color: #666666;
|
|
text-align: center;
|
|
}
|
|
.email-footer p {
|
|
margin: 0 0 8px 0;
|
|
}
|
|
.email-footer p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
.email-footer a {
|
|
color: #666666;
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|