1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php // phpcs:ignoreFile /** * Plain email footer * * Override this template by copying it to yourtheme/automatewoo/email/plain/email-footer.php */
if ( ! defined( 'ABSPATH' ) ) exit;
?>
<?php if ( apply_filters( 'automatewoo/show_plain_text_footer_when_no_unsubscribe_link', false ) || AW_Mailer_API::unsubscribe_url() ): // only show footer when there is unsub URL ?> <div class="automatewoo-plain-email-footer"> <br><span>–</span><br> <?php echo apply_filters( 'woocommerce_email_footer_text', get_option( 'woocommerce_email_footer_text' ) ) ?> </div> <?php endif; ?>
</body></html>
|