Sin descripción

summary-footer-plain.php 654B

1234567891011121314151617181920212223242526
  1. <?php
  2. /**
  3. * Summary footer template (plain text).
  4. *
  5. * This template can be overridden by copying it to yourtheme/wpforms/emails/summary-footer-plain.php.
  6. *
  7. * @since 1.6.2.3
  8. *
  9. * @version 1.6.2.3
  10. */
  11. if ( ! defined( 'ABSPATH' ) ) {
  12. exit;
  13. }
  14. echo "\n---\n\n";
  15. printf( /* translators: %s - link to a site. */
  16. esc_html__( 'This email was auto-generated and sent from %s.', 'wpforms-lite' ),
  17. esc_html( wp_specialchars_decode( get_bloginfo( 'name' ) ) )
  18. );
  19. echo "\n";
  20. printf( /* translators: %s - link to the documentation. */
  21. esc_html__( 'Learn how to disable: %s.', 'wpforms-lite' ),
  22. 'https://wpforms.com/docs/how-to-use-email-summaries/#faq'
  23. );