| 1 |
<?php |
| 2 |
// don't load directly |
| 3 |
if ( !defined('ABSPATH') ) |
| 4 |
die('-1'); |
| 5 |
|
| 6 |
do_action( 'uwp_email_header', $email_heading, $email_name, $email_vars, $plain_text, $sent_to_admin ); |
| 7 |
|
| 8 |
if ( ! empty( $message_body ) ) { |
| 9 |
echo wp_strip_all_tags( $message_body ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 10 |
} |
| 11 |
|
| 12 |
do_action( 'uwp_email_footer', $email_name, $email_vars, $plain_text, $sent_to_admin ); |