PageRenderTime 73ms CodeModel.GetById 21ms RepoModel.GetById 0ms app.codeStats 0ms

/templates/emails/customer-reset-password.php

https://github.com/CammoKing/woocommerce
PHP | 24 lines | 13 code | 4 blank | 7 comment | 1 complexity | c065d046d09b6d085be611f07af1880d MD5 | raw file
Possible License(s): GPL-3.0
  1. <?php
  2. /**
  3. * Customer Reset Password email
  4. *
  5. * @author WooThemes
  6. * @package WooCommerce/Templates/Emails
  7. * @version 1.7.0
  8. */
  9. if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>
  10. <?php do_action('woocommerce_email_header', $email_heading); ?>
  11. <p><?php _e( 'Someone requested that the password be reset for the following account:', 'woocommerce' ); ?></p>
  12. <p><?php printf( __( 'Username: %s', 'woocommerce' ), $user_login ); ?></p>
  13. <p><?php _e( 'If this was a mistake, just ignore this email and nothing will happen.', 'woocommerce' ); ?></p>
  14. <p><?php _e( 'To reset your password, visit the following address:', 'woocommerce' ); ?></p>
  15. <p>
  16. <a href="<?php echo esc_url( get_permalink( woocommerce_get_page_id( 'lost_password' ) ) . sprintf( '?key=%s&login=%s', $reset_key, $user_login ) ); ?>">
  17. <?php _e( 'Click here to reset your password', 'woocommerce' ); ?></a>
  18. </p>
  19. <p></p>
  20. <?php do_action('woocommerce_email_footer'); ?>