| 1 |
<?php |
| 2 |
if ( ! defined( 'ABSPATH' ) ) { |
| 3 |
exit; // Exit if accessed directly |
| 4 |
} |
| 5 |
|
| 6 |
\ABlocks\Helper::get_template( 'email/template-header.php' ); |
| 7 |
?> |
| 8 |
<div class="container"> |
| 9 |
<div class="content"> |
| 10 |
<div class="wrapper"> |
| 11 |
<h5 class="main-heading">Thank you for subscribing with us!</h5> |
| 12 |
<div class="entry-content"> |
| 13 |
<p>Thank you for verifying your email address.</p> |
| 14 |
<p><a href="<?php echo esc_url( home_url() ); ?>">Go to home page</a></p> |
| 15 |
<p>Your email has been successfully verified.If you have any questions, feel free to reach out to our support team.</p> |
| 16 |
<p>Best regards,<br><?php echo esc_attr( get_bloginfo( 'name' ) ); ?></p> |
| 17 |
</div> |
| 18 |
<div class="footer"> |
| 19 |
© <?php |
| 20 |
$url = wp_parse_url( get_bloginfo( 'url' ) ); |
| 21 |
$host = isset( $url['host'] ) ? sanitize_text_field( $url['host'] ) : ''; |
| 22 |
$port = isset( $url['port'] ) ? sanitize_text_field( (string) $url['port'] ) : '80'; |
| 23 |
echo esc_html( $host . ':' . $port ); |
| 24 |
?> |
| 25 |
<?php // echo wp_kses_post( $footer ); |
| 26 |
// phpcs::ignore Squiz.PHP.CommentedOutCode.Found |
| 27 |
?> |
| 28 |
</div> |
| 29 |
</td> |
| 30 |
</div> |
| 31 |
</div> |
| 32 |
<?php |
| 33 |
\ABlocks\Helper::get_template( 'email/template-footer.php' ); |
| 34 |
|