Sin descripción

plain-merchant-notification.php 766B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Merchant notification email (plain text)
  4. *
  5. * @package WooCommerce\Admin\Templates\Emails\HTML
  6. */
  7. defined( 'ABSPATH' ) || exit;
  8. echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n";
  9. echo esc_html( wp_strip_all_tags( $email_heading ) );
  10. echo "\n=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=\n\n";
  11. echo wp_kses_post( $email_content );
  12. foreach ( $email_actions as $an_action ) {
  13. echo "\n";
  14. /* translators: %1$s: action label, %2$s: action URL */
  15. echo wp_kses_post( sprintf( __( '%1$s: %2$s', 'woocommerce' ), $an_action->label, $trigger_note_action_url . $an_action->id ) );
  16. }
  17. echo "\n\n----------------------------------------\n\n";
  18. echo wp_kses_post( apply_filters( 'woocommerce_email_footer_text', get_option( 'woocommerce_email_footer_text' ) ) );